GitHub Remarks
a chrome extension that can give github repos your own remarks
GitHub Remarksとは何ですか?
GitHub Remarksはhanzichiによって開発されたChromeの拡張機能で、その主な機能は「a chrome extension that can give github repos your own remarks」です。
拡張機能のスクリーンショット
GitHub Remarks拡張機能のCRXファイルをダウンロード
GitHub Remarks拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
a chrome extension that can give github repos your own remarks
拡張機能の基本情報
名前 | GitHub Remarks |
ID | pkepkgjchpahghcfdmdokoonapagblem |
公式URL | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
説明 | a chrome extension that can give github repos your own remarks |
ファイルサイズ | 178 KB |
インストール数 | 45 |
現在のバージョン | 1.2.1 |
最終更新日 | 2018-05-28 |
公開日 | 2018-05-27 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | hanzichi |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/hanzichi/github-remarks |
ヘルプページのURL | https://github.com/hanzichi/github-remarks/issues |
対応言語 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Remarks", "manifest_version": 2, "version": "1.2.1", "description": "a chrome extension that can give github repos your own remarks", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "", "default_icon": { "19": "icons\/icon_19.png", "38": "icons\/icon_38.png" } }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "js": [ "content-scripts\/repoDetail.js" ], "css": [], "run_at": "document_end" }, { "matches": [ "*:\/\/github.com\/*" ], "js": [ "lib\/jquery.min.js", "lib\/list.min.js", "content-scripts\/stars.js" ], "css": [], "run_at": "document_end" } ] } |