GitHub Remarks
a chrome extension that can give github repos your own remarks
Vad är GitHub Remarks?
GitHub Remarks är en Chrome-tillägg utvecklad av hanzichi, och dess huvudfunktion är "a chrome extension that can give github repos your own remarks".
Tilläggsskärmbilder
Ladda ner GitHub Remarks-förlängningens CRX-fil
Ladda ner GitHub Remarks-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
a chrome extension that can give github repos your own remarks
Grundläggande Information om Tillägg
Namn | GitHub Remarks |
ID | pkepkgjchpahghcfdmdokoonapagblem |
Officiell webbadress | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
Beskrivning | a chrome extension that can give github repos your own remarks |
Filstorlek | 178 KB |
Antal Installationer | 45 |
Aktuell Version | 1.2.1 |
Senast Uppdaterad | 2018-05-28 |
Publiceringsdatum | 2018-05-27 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | hanzichi |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/hanzichi/github-remarks |
Hjälpsida URL | https://github.com/hanzichi/github-remarks/issues |
Stödda Språk | 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" } ] } |