Github Annotator
Show user details and repository info in a tooltip.
Vad är Github Annotator?
Github Annotator är en Chrome-tillägg utvecklad av Mesut Tasci, och dess huvudfunktion är "Show user details and repository info in a tooltip.".
Tilläggsskärmbilder
Ladda ner Github Annotator-förlängningens CRX-fil
Ladda ner Github Annotator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | epmbkocbfiejffcjahjhncadlipmdime |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
| Beskrivning | Show user details and repository info in a tooltip. |
| Filstorlek | 81.68 KB |
| Antal Installationer | 214 |
| Aktuell Version | 2.1 |
| Senast Uppdaterad | 2017-10-22 |
| Publiceringsdatum | 2017-10-22 |
| Betyg | 4.50/5 Totalt 2 Betyg |
| Utvecklare | Mesut Tasci |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://github.com/mesuutt/github-annotator |
| Hjälpsida URL | https://github.com/mesuutt/github-annotator/issues |
| Stödda Språk | 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"
}
} | |