Github Gist logo fixer

Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.

Apa itu Github Gist logo fixer?

Github Gist logo fixer adalah ekstensi Chrome yang dikembangkan oleh https://hmemcpy.com, dan fitur utamanya adalah "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Github Gist logo fixer

Unduh file ekstensi Github Gist logo fixer 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

                        A tiny bit of JavaScript to have clicking on the top left logo on Github's Gist page take back to github.

Solves a personal annoyance of mine, but I hope you'll find it useful as well.

Feel free to send me pull requests to improve it!                    

Informasi Dasar Ekstensi

Nama Github Gist logo fixer Github Gist logo fixer
ID bgkfamnjiedcggijadfmjopnmidnkdad
URL Resmi https://chromewebstore.google.com/detail/github-gist-logo-fixer/bgkfamnjiedcggijadfmjopnmidnkdad
Deskripsi Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.
Ukuran File 4.12 KB
Jumlah Instalasi 80
Versi Saat Ini 1.1
Terakhir Diperbarui 2015-05-17
Tanggal Publikasi 2015-05-17
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://hmemcpy.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/hmemcpy/gisthub
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Gist logo fixer",
    "description": "Splits the top left Github|Gist logo into two URLS - the 'Github' part goes to Github, and 'Gist' goes to Gist.",
    "version": "1.1",
    "permissions": [
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "github-inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}