GitHub Remarks
a chrome extension that can give github repos your own remarks
What is GitHub Remarks?
GitHub Remarks is a Chrome extension developed by hanzichi, and its main feature is "a chrome extension that can give github repos your own remarks".
Extension Screenshots
Download GitHub Remarks Extension CRX File
Download GitHub Remarks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
a chrome extension that can give github repos your own remarks
Extension Basic Information
Name | GitHub Remarks |
ID | pkepkgjchpahghcfdmdokoonapagblem |
Official URL | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
Description | a chrome extension that can give github repos your own remarks |
File Size | 178 KB |
Installation Count | 45 |
Current Version | 1.2.1 |
Last Updated | 2018-05-28 |
Publish Date | 2018-05-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | hanzichi |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/hanzichi/github-remarks |
Help Page URL | https://github.com/hanzichi/github-remarks/issues |
Supported Languages | 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" } ] } |