Github Annotator
Show user details and repository info in a tooltip.
Wat is Github Annotator?
Github Annotator is een Chrome-extensie ontwikkeld door Mesut Tasci, en de belangrijkste functie is "Show user details and repository info in a tooltip.".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Annotator
Download Github Annotator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | epmbkocbfiejffcjahjhncadlipmdime |
| Officiële URL | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
| Beschrijving | Show user details and repository info in a tooltip. |
| Bestandsgrootte | 81.68 KB |
| Aantal Installaties | 214 |
| Huidige Versie | 2.1 |
| Laatst Bijgewerkt | 2017-10-22 |
| Publicatiedatum | 2017-10-22 |
| Beoordeling | 4.50/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | Mesut Tasci |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://github.com/mesuutt/github-annotator |
| Help Pagina-URL | https://github.com/mesuutt/github-annotator/issues |
| Ondersteunde Talen | 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"
}
} | |