Stacko Taco

This chrome extension is for people who just can't get enough tacos!

Cos'è Stacko Taco?

Stacko Taco è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This chrome extension is for people who just can't get enough tacos!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Stacko Taco

Scarica i file di estensione Stacko Taco 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 is here to add some light-heartedness to your life when you are deep in thought and despair trying to fix some broken code and end up on Stack Overflow. One thing is for sure that when I'm down, tacos lift me up and give me wings. So hopefully, these tacos will give you the spirit and joy that you deserve.

Because everyone loves tacos.                    

Informazioni di Base sull'Estensione

Nome Stacko Taco Stacko Taco
ID dklaccacmampgfejkkkcbgchkafhfgoa
URL Ufficiale https://chromewebstore.google.com/detail/stacko-taco/dklaccacmampgfejkkkcbgchkafhfgoa
Descrizione This chrome extension is for people who just can't get enough tacos!
Dimensione del File 22.03 KB
Conteggio Installazioni 143
Versione Corrente 1.0
Ultimo Aggiornamento 2019-02-23
Data di Pubblicazione 2019-02-22
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stacko Taco",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This chrome extension is for people who just can't get enough tacos!",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Stacko Taco",
        "default_popup": "overlay.html"
    },
    "content_scripts": [
        {
            "css": [
                "css\/styles.css"
            ],
            "js": [
                "js\/overlay.js"
            ],
            "matches": [
                "https:\/\/stackoverflow.com\/*"
            ]
        }
    ]
}