buildo's GitHub workflow extension

Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…

buildo's GitHub workflow extensionคืออะไร?

buildo's GitHub workflow extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gabriele และคุณลักษณะหลักของมันคือ "Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย buildo's GitHub workflow extension

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

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

                        Adds useful features for the GitHub UI:

Highlights:
- Add preview button in pull requests
- Add subissue button
- Add inline preview of issue description in pull requests                    

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

ชื่อ buildo's GitHub workflow extension buildo's GitHub workflow extension
ID chkjadbenkogbdkdjeckjfbbnjpmbelm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/buildos-github-workflow-e/chkjadbenkogbdkdjeckjfbbnjpmbelm
คำอธิบาย Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…
ขนาดไฟล์ 227 KB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 1.15.8
อัปเดตครั้งล่าสุด 2021-01-31
วันที่เผยแพร่ 2020-05-11
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา gabriele
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://buildo.io
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "buildo's GitHub workflow extension",
    "version": "1.15.8",
    "background": {
        "scripts": [
            "background\/background.bundle.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                ".\/plugin.css"
            ],
            "js": [
                ".\/plugin\/plugin.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "webRequest",
        "storage",
        "https:\/\/github.com\/*"
    ]
}