Github Annotator
Show user details and repository info in a tooltip.
Co je Github Annotator?
Github Annotator je rozšíření Chrome vyvinuté Mesut Tasci, a jeho hlavní funkcí je „Show user details and repository info in a tooltip.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Github Annotator
Stáhněte si soubory rozšíření Github Annotator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Github Annotator |
ID | epmbkocbfiejffcjahjhncadlipmdime |
Oficiální URL | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
Popis | Show user details and repository info in a tooltip. |
Velikost souboru | 81.68 KB |
Počet instalací | 214 |
Aktuální Verze | 2.1 |
Poslední Aktualizace | 2017-10-22 |
Datum Vydání | 2017-10-22 |
Hodnocení | 4.50/5 Celkem 2 Hodnocení |
Vývojář | Mesut Tasci |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://github.com/mesuutt/github-annotator |
URL Stránky Nápovědy | https://github.com/mesuutt/github-annotator/issues |
Podporované Jazyky | 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" } } |