Stacko Taco

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

Vad är Stacko Taco?

Stacko Taco är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This chrome extension is for people who just can't get enough tacos!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Stacko Taco-förlängningens CRX-fil

Ladda ner Stacko Taco-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Stacko Taco Stacko Taco
ID dklaccacmampgfejkkkcbgchkafhfgoa
Officiell webbadress https://chromewebstore.google.com/detail/stacko-taco/dklaccacmampgfejkkkcbgchkafhfgoa
Beskrivning This chrome extension is for people who just can't get enough tacos!
Filstorlek 22.03 KB
Antal Installationer 143
Aktuell Version 1.0
Senast Uppdaterad 2019-02-23
Publiceringsdatum 2019-02-22
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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\/*"
            ]
        }
    ]
}