Github compare tags

Adds tags to the compare page of Github.

Co to jest Github compare tags?

Github compare tags to rozszerzenie Chrome opracowane przez marpo60, a jego główną funkcją jest „Adds tags to the compare page of Github.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Github compare tags

Pobierz pliki rozszerzeń Github compare tags w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
Oficjalny URL https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
Opis Adds tags to the compare page of Github.
Rozmiar pliku 8.43 KB
Liczba instalacji 62
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2019-06-01
Data Publikacji 2019-06-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper marpo60
Typ Płatności free
Strona Rozszerzenia https://github.com/marpo60/github-compare-tags
Obsługiwane Języki 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"
            ]
        }
    ]
}