Github compare tags

Adds tags to the compare page of Github.

Wat is Github compare tags?

Github compare tags is een Chrome-extensie ontwikkeld door marpo60, en de belangrijkste functie is "Adds tags to the compare page of Github.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Github compare tags

Download Github compare tags-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Add into the dropdown of Github compare page the tags of the repositories.                    

Basisinformatie over de Extensie

Naam Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
Officiële URL https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
Beschrijving Adds tags to the compare page of Github.
Bestandsgrootte 8.43 KB
Aantal Installaties 62
Huidige Versie 0.0.6
Laatst Bijgewerkt 2019-06-01
Publicatiedatum 2019-06-01
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar marpo60
Betalingswijze free
Extensiewebsite https://github.com/marpo60/github-compare-tags
Ondersteunde Talen 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"
            ]
        }
    ]
}