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. 拡張機能の基本情報
| 名前 | |
| ID | nbiddhncecgemgccalnoanpnenalmkic |
| 公式URL | 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 |
| Eメール | [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"
]
} | |