Github Annotator
Show user details and repository info in a tooltip.
Co to jest Github Annotator?
Github Annotator to rozszerzenie Chrome opracowane przez Mesut Tasci, a jego główną funkcją jest „Show user details and repository info in a tooltip.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Annotator
Pobierz pliki rozszerzeń Github Annotator 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
Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages. Extension source code: https://github.com/mesuutt/github-annotator
Podstawowe informacje o rozszerzeniu
Nazwa | Github Annotator |
ID | epmbkocbfiejffcjahjhncadlipmdime |
Oficjalny URL | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
Opis | Show user details and repository info in a tooltip. |
Rozmiar pliku | 81.68 KB |
Liczba instalacji | 214 |
Aktualna Wersja | 2.1 |
Ostatnia Aktualizacja | 2017-10-22 |
Data Publikacji | 2017-10-22 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | Mesut Tasci |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://github.com/mesuutt/github-annotator |
Adres URL Strony Pomocy | https://github.com/mesuutt/github-annotator/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Annotator", "description": "Show user details and repository info in a tooltip.", "manifest_version": 2, "version": "2.1", "permissions": [ "storage" ], "content_scripts": [ { "js": [ "jquery-1.9.1.min.js", "contentscript.js" ], "css": [ "style.css" ], "matches": [ "https:\/\/github.com\/" ] } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" } } |