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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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 |
이메일 | [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" ] } |