Github compare tags

Adds tags to the compare page of Github.

Apa itu Github compare tags?

Github compare tags adalah ekstensi Chrome yang dikembangkan oleh marpo60, dan fitur utamanya adalah "Adds tags to the compare page of Github.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Github compare tags

Unduh file ekstensi Github compare tags dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
URL Resmi https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
Deskripsi Adds tags to the compare page of Github.
Ukuran File 8.43 KB
Jumlah Instalasi 62
Versi Saat Ini 0.0.6
Terakhir Diperbarui 2019-06-01
Tanggal Publikasi 2019-06-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang marpo60
Tipe Pembayaran free
Situs Ekstensi https://github.com/marpo60/github-compare-tags
Bahasa yang Didukung 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"
            ]
        }
    ]
}