Github Annotator
Show user details and repository info in a tooltip.
What is Github Annotator?
Github Annotator is a Chrome extension developed by Mesut Tasci, and its main feature is "Show user details and repository info in a tooltip.".
Extension Screenshots
Download Github Annotator Extension CRX File
Download Github Annotator 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
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
Extension Basic Information
Name | Github Annotator |
ID | epmbkocbfiejffcjahjhncadlipmdime |
Official URL | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
Description | Show user details and repository info in a tooltip. |
File Size | 81.68 KB |
Installation Count | 214 |
Current Version | 2.1 |
Last Updated | 2017-10-22 |
Publish Date | 2017-10-22 |
Rating | 4.50/5 Total 2 Ratings |
Developer | Mesut Tasci |
[email protected] | |
Payment Type | free |
Extension Website | http://github.com/mesuutt/github-annotator |
Help Page URL | https://github.com/mesuutt/github-annotator/issues |
Supported Languages | 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" } } |