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 là gì?

buildo's GitHub workflow extension là một tiện ích mở rộng Chrome được phát triển bởi gabriele, và tính năng chính của nó là "Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng buildo's GitHub workflow extension

Tải xuống các tệp mở rộng buildo's GitHub workflow extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên buildo's GitHub workflow extension buildo's GitHub workflow extension
ID chkjadbenkogbdkdjeckjfbbnjpmbelm
URL Chính Thức https://chromewebstore.google.com/detail/buildos-github-workflow-e/chkjadbenkogbdkdjeckjfbbnjpmbelm
Mô tả Adds useful features for the GitHub UI: Highlights: - Add preview button in pull requests - Add subissue button - Add inline…
Kích Thước Tệp 227 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.15.8
Cập Nhật Lần Cuối 2021-01-31
Ngày Phát Hành 2020-05-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển gabriele
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://buildo.io
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}