Github compare tags
Adds tags to the compare page of Github.
Was ist Github compare tags?
Github compare tags ist eine Chrome-Erweiterung, die von marpo60 entwickelt wurde, und ihr Hauptmerkmal ist "Adds tags to the compare page of Github.".
Erweiterungsscreenshots
Github compare tags-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github compare tags-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
Add into the dropdown of Github compare page the tags of the repositories.
Grundlegende Informationen zur Erweiterung
Name | Github compare tags |
ID | pjkolicadkdcfgjjoopdpleenckeajkk |
Offizielle URL | https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk |
Beschreibung | Adds tags to the compare page of Github. |
Dateigröße | 8.43 KB |
Installationsanzahl | 62 |
Aktuelle Version | 0.0.6 |
Letztes Update | 2019-06-01 |
Veröffentlichungsdatum | 2019-06-01 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | marpo60 |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/marpo60/github-compare-tags |
Unterstützte Sprachen | 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" ] } ] } |