Github compare tags
Adds tags to the compare page of Github.
Vad är Github compare tags?
Github compare tags är en Chrome-tillägg utvecklad av marpo60, och dess huvudfunktion är "Adds tags to the compare page of Github.".
Tilläggsskärmbilder
Ladda ner Github compare tags-förlängningens CRX-fil
Ladda ner Github compare tags-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
Add into the dropdown of Github compare page the tags of the repositories. Grundläggande Information om Tillägg
| Namn | |
| ID | pjkolicadkdcfgjjoopdpleenckeajkk |
| Officiell webbadress | https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk |
| Beskrivning | Adds tags to the compare page of Github. |
| Filstorlek | 8.43 KB |
| Antal Installationer | 62 |
| Aktuell Version | 0.0.6 |
| Senast Uppdaterad | 2019-06-01 |
| Publiceringsdatum | 2019-06-01 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | marpo60 |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/marpo60/github-compare-tags |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github compare tags",
"version": "0.0.6",
"manifest_version": 2,
"description": "Adds tags to the compare page of Github.",
"icons": {
"16": "icons\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"permissions": [
"storage",
"https:\/\/github.com\/*"
],
"background": {
"scripts": [
"src\/hot-reload.js"
]
},
"options_ui": {
"page": "src\/options.html",
"chrome_style": true
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"src\/inject.js"
]
}
]
} | |