Stacko Taco

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

Co to jest Stacko Taco?

Stacko Taco to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „This chrome extension is for people who just can't get enough tacos!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Stacko Taco

Pobierz pliki rozszerzeń Stacko Taco w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Stacko Taco Stacko Taco
ID dklaccacmampgfejkkkcbgchkafhfgoa
Oficjalny URL https://chromewebstore.google.com/detail/stacko-taco/dklaccacmampgfejkkkcbgchkafhfgoa
Opis This chrome extension is for people who just can't get enough tacos!
Rozmiar pliku 22.03 KB
Liczba instalacji 143
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-02-23
Data Publikacji 2019-02-22
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}