Kamino

This extension shows a button on Github issue pages that can be used to clone github issues across repositories

Kaminoคืออะไร?

Kamino เป็นส่วนขยายของ Chrome ที่พัฒนาโดย John Murphy และคุณลักษณะหลักของมันคือ "This extension shows a button on Github issue pages that can be used to clone github issues across repositories"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Kamino

ดาวน์โหลดไฟล์ส่วนขยาย Kamino ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Kamino is a Chrome extension that is used to clone Github issues from one repository to another. Go to an issue page and click "Clone issue to", choose a new repository and the original item will be closed and cloned to the new repository you have chosen. This tool is very handy for feedback repositories whose issues need to be distributed to the actual project repository.

For detailed instructions and info on updates, please visit https://github.com/gatewayapps/kamino and view the ReadMe file.

kamino v4.0.0
- BREAKING CHANGES: Upgraded the extension to use Manifest v3 and refactored a lot of the code to bring it to a more up to date state.

Release generated by Parcel(https://parcelapp.io)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Kamino Kamino
ID ffdebockfdjileaojbbccofhgncmioaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/kamino/ffdebockfdjileaojbbccofhgncmioaf
คำอธิบาย This extension shows a button on Github issue pages that can be used to clone github issues across repositories
ขนาดไฟล์ 565 KB
จำนวนการติดตั้ง 685
เวอร์ชันปัจจุบัน 4.0.0
อัปเดตครั้งล่าสุด 2023-06-21
วันที่เผยแพร่ 2019-08-02
คะแนน 4.90/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา John Murphy
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gatewayapps/kamino
URL หน้าช่วยเหลือ https://github.com/gatewayapps/kamino/blob/master/README.md
URL หน้านโยบายความเป็นส่วนตัว https://github.com/gatewayapps/kamino/blob/master/README.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "John Murphy - Gateway Apps, LLC",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/issues"
            ],
            "exclude_matches": [
                "*:\/\/github.com\/*\/*\/issues\/*"
            ],
            "js": [
                ".\/jquery\/jquery-3.6.0.min.js",
                ".\/handlebars.runtime.min-v4.7.7.js",
                ".\/batch.js",
                ".\/template.js"
            ],
            "css": [
                ".\/css\/style.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/issues\/*"
            ],
            "exclude_matches": [
                "*:\/\/github.com\/*\/*\/issues"
            ],
            "js": [
                ".\/jquery\/jquery-3.6.0.min.js",
                ".\/handlebars.runtime.min-v4.7.7.js",
                ".\/app.js",
                ".\/template.js"
            ],
            "css": [
                ".\/css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "description": "This extension shows a button on Github issue pages that can be used to clone github issues across repositories",
    "icons": {
        "128": "icons\/storm-trooper-128.png"
    },
    "manifest_version": 3,
    "name": "Kamino",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "background",
        "scripting",
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/github.com\/*"
    ],
    "version": "4.0.0",
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.png",
                "bootstrap\/js\/bootstrap.min.js",
                ".\/css\/style.css",
                ".\/css\/options.css",
                "jquery\/jquery-3.6.0.min.js",
                "handlebars.runtime.min-v4.7.7.js",
                "template.js",
                "app.js",
                "options.html",
                "options.js",
                "background.js"
            ],
            "matches": [
                "*:\/\/github.com\/*"
            ]
        }
    ]
}