GitHub Issue Link Status
Colorize issue and PR links to see their status (open, closed, merged)
什麼是GitHub Issue Link Status?
GitHub Issue Link Status是由fregante開發的Chrome擴展程式,該擴展的主要功能是“Colorize issue and PR links to see their status (open, closed, merged)”。
擴展截圖
下載GitHub Issue Link Status擴展crx文件
下載GitHub Issue Link Status擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
It uses GraphQL to make a single HTTP request to check all the links on a page at once. This means that you'll need to create a API token and add it to the Options page or else the extension will not work. GitHub Enterprise is also supported. More info in the options.
擴展基本資訊
名稱 | GitHub Issue Link Status |
ID | nbiddhncecgemgccalnoanpnenalmkic |
官方網址 | https://chromewebstore.google.com/detail/github-issue-link-status/nbiddhncecgemgccalnoanpnenalmkic |
簡介 | Colorize issue and PR links to see their status (open, closed, merged) |
檔案大小 | 628 KB |
安裝次數 | 840 |
目前版本 | 23.12.9 |
更新時間 | 2023-12-16 |
上架時間 | 2020-05-28 |
評分 | 5.00/5 共 11 次評分 |
開發者 | fregante |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/fregante/github-issue-link-status |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Issue Link Status", "version": "23.12.9", "manifest_version": 2, "description": "Colorize issue and PR links to see their status (open, closed, merged)", "author": "Federico Brigante", "homepage_url": "https:\/\/github.com\/fregante\/github-issue-link-status", "minimum_chrome_version": "110", "icons": { "128": "icon.8e96fe6a.png" }, "applications": { "gecko": { "id": "[email protected]", "strict_min_version": "110.0" } }, "background": { "scripts": [ "background.f4bf7b8a.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.8e96fe6a.png" }, "permissions": [ "storage", "contextMenus", "activeTab", "https:\/\/api.github.com\/*" ], "optional_permissions": [ "*:\/\/*\/*" ], "options_ui": { "chrome_style": true, "page": "options.a1657bf3.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "github-issue-link-status.3d226882.js" ], "css": [ "github-issue-link-status.6d22c692.css" ] } ], "web_accessible_resources": [ "github-issue-link-status.13b89ed2.svg", "github-issue-link-status.0e56a715.svg", "github-issue-link-status.8ef1950e.svg", "github-issue-link-status.08639d3b.svg", "github-issue-link-status.28fd9b3b.svg", "github-issue-link-status.47996722.svg", "github-issue-link-status.d9d314fc.svg" ] } |