Stacko Taco
This chrome extension is for people who just can't get enough tacos!
Was ist Stacko Taco?
Stacko Taco ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This chrome extension is for people who just can't get enough tacos!".
Erweiterungsscreenshots
Stacko Taco-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stacko Taco-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Stacko Taco |
ID | dklaccacmampgfejkkkcbgchkafhfgoa |
Offizielle URL | https://chromewebstore.google.com/detail/stacko-taco/dklaccacmampgfejkkkcbgchkafhfgoa |
Beschreibung | This chrome extension is for people who just can't get enough tacos! |
Dateigröße | 22.03 KB |
Installationsanzahl | 143 |
Aktuelle Version | 1.0 |
Letztes Update | 2019-02-23 |
Veröffentlichungsdatum | 2019-02-22 |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } ] } |