GC78 Ice Cream Party

Replaces the text 'General Convention' with 'Ice Cream Party'.

Cos'è GC78 Ice Cream Party?

GC78 Ice Cream Party è un'estensione di Chrome sviluppata da David Sibley, e la sua funzione principale è "Replaces the text 'General Convention' with 'Ice Cream Party'.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GC78 Ice Cream Party

Scarica i file di estensione GC78 Ice Cream Party in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension provides relief to beleaguered Episcopalians who are overwhelmed by General Convention, or at least, need a laugh out of it. Let's have an Ice Cream party instead!

(Much credit and thanks to Eric Bailey, who wrote the  "Millennials to Snake People" extension, for making this very easy coding, by sharing his code publicly and freely licensing that work.)                    

Informazioni di Base sull'Estensione

Nome GC78 Ice Cream Party GC78 Ice Cream Party
ID ehncpgmcdaimjbcgdhedmlmhbodfcfjp
URL Ufficiale https://chromewebstore.google.com/detail/gc78-ice-cream-party/ehncpgmcdaimjbcgdhedmlmhbodfcfjp
Descrizione Replaces the text 'General Convention' with 'Ice Cream Party'.
Dimensione del File 33.27 KB
Conteggio Installazioni 25
Versione Corrente 1.7
Ultimo Aggiornamento 2015-06-12
Data di Pubblicazione 2015-06-11
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore David Sibley
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GC78 Ice Cream Party",
    "short_name": "Ice Cream",
    "description": "Replaces the text 'General Convention' with 'Ice Cream Party'.",
    "author": "David Sibley",
    "version": "1.7",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}