Github Annotator
Show user details and repository info in a tooltip.
Was ist Github Annotator?
Github Annotator ist eine Chrome-Erweiterung, die von Mesut Tasci entwickelt wurde, und ihr Hauptmerkmal ist "Show user details and repository info in a tooltip.".
Erweiterungsscreenshots
Github Annotator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Annotator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | epmbkocbfiejffcjahjhncadlipmdime |
| Offizielle URL | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
| Beschreibung | Show user details and repository info in a tooltip. |
| Dateigröße | 81.68 KB |
| Installationsanzahl | 214 |
| Aktuelle Version | 2.1 |
| Letztes Update | 2017-10-22 |
| Veröffentlichungsdatum | 2017-10-22 |
| Bewertung | 4.50/5 Insgesamt 2 Bewertungen |
| Entwickler | Mesut Tasci |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://github.com/mesuutt/github-annotator |
| Hilfeseite URL | https://github.com/mesuutt/github-annotator/issues |
| Unterstützte Sprachen | 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"
}
} | |