Github compare tags
Adds tags to the compare page of Github.
What is Github compare tags?
Github compare tags is a Chrome extension developed by marpo60, and its main feature is "Adds tags to the compare page of Github.".
Extension Screenshots
Download Github compare tags Extension CRX File
Download Github compare tags extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Add into the dropdown of Github compare page the tags of the repositories.
Extension Basic Information
Name | Github compare tags |
ID | pjkolicadkdcfgjjoopdpleenckeajkk |
Official URL | https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk |
Description | Adds tags to the compare page of Github. |
File Size | 8.43 KB |
Installation Count | 62 |
Current Version | 0.0.6 |
Last Updated | 2019-06-01 |
Publish Date | 2019-06-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | marpo60 |
Payment Type | free |
Extension Website | https://github.com/marpo60/github-compare-tags |
Supported Languages | 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" ] } ] } |