Github compare tags
Adds tags to the compare page of Github.
Hvad er Github compare tags?
Github compare tags er en Chrome-udvidelse udviklet af marpo60, og dens hovedfunktion er "Adds tags to the compare page of Github.".
Udvidelsesskærmbilleder
Download Github compare tags-udvidelses-CRX-fil
Download Github compare tags-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Add into the dropdown of Github compare page the tags of the repositories. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | pjkolicadkdcfgjjoopdpleenckeajkk |
| Officiel URL | https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk |
| Beskrivelse | Adds tags to the compare page of Github. |
| Filstørrelse | 8.43 KB |
| Antal Installationer | 62 |
| Nuværende Version | 0.0.6 |
| Senest Opdateret | 2019-06-01 |
| Udgivelsesdato | 2019-06-01 |
| Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
| Udvikler | marpo60 |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/marpo60/github-compare-tags |
| Understøttede Sprog | 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"
]
}
]
} | |