GitHub Remarks
a chrome extension that can give github repos your own remarks
Co to jest GitHub Remarks?
GitHub Remarks to rozszerzenie Chrome opracowane przez hanzichi, a jego główną funkcją jest „a chrome extension that can give github repos your own remarks”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Remarks
Pobierz pliki rozszerzeń GitHub Remarks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
a chrome extension that can give github repos your own remarks
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub Remarks |
ID | pkepkgjchpahghcfdmdokoonapagblem |
Oficjalny URL | https://chromewebstore.google.com/detail/github-remarks/pkepkgjchpahghcfdmdokoonapagblem |
Opis | a chrome extension that can give github repos your own remarks |
Rozmiar pliku | 178 KB |
Liczba instalacji | 45 |
Aktualna Wersja | 1.2.1 |
Ostatnia Aktualizacja | 2018-05-28 |
Data Publikacji | 2018-05-27 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | hanzichi |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/hanzichi/github-remarks |
Adres URL Strony Pomocy | https://github.com/hanzichi/github-remarks/issues |
Obsługiwane Języki | 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" } ] } |