GitHub Issues
Browser extension that adds handy tweaks for issues at GitHub.
GitHub Issuesとは何ですか?
GitHub IssuesはRichard Fridrichによって開発されたChromeの拡張機能で、その主な機能は「Browser extension that adds handy tweaks for issues at GitHub.」です。
拡張機能のスクリーンショット
GitHub Issues拡張機能のCRXファイルをダウンロード
GitHub Issues拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Browser extension that adds a few handy tweaks to issues at GitHub: - Hide label changes. - Hide reassignments. - Hide milestone changes. - Hide emojis. - Hide "+1" comments and display them as a counter/summary. Source code for this extension is available at: https://github.com/fczbkk/github-issues-extension
拡張機能の基本情報
名前 | GitHub Issues |
ID | jlhpeckkndnaidhfihcmlihekebdepgg |
公式URL | https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg |
説明 | Browser extension that adds handy tweaks for issues at GitHub. |
ファイルサイズ | 12.85 KB |
インストール数 | 17 |
現在のバージョン | 0.3.2 |
最終更新日 | 2015-03-13 |
公開日 | 2015-03-13 |
開発者 | Richard Fridrich |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Issues", "version": "0.3.2", "manifest_version": 2, "description": "Browser extension that adds handy tweaks for issues at GitHub.", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*\/issues\/*", "*:\/\/*.github.com\/*\/pull\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ] } |