Stacko Taco

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

Hvad er Stacko Taco?

Stacko Taco er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "This chrome extension is for people who just can't get enough tacos!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Stacko Taco-udvidelses-CRX-fil

Download Stacko Taco-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Stacko Taco Stacko Taco
ID dklaccacmampgfejkkkcbgchkafhfgoa
Officiel URL https://chromewebstore.google.com/detail/stacko-taco/dklaccacmampgfejkkkcbgchkafhfgoa
Beskrivelse This chrome extension is for people who just can't get enough tacos!
Filstørrelse 22.03 KB
Antal Installationer 143
Nuværende Version 1.0
Senest Opdateret 2019-02-23
Udgivelsesdato 2019-02-22
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog 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\/*"
            ]
        }
    ]
}