Stacko Taco

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

什麼是Stacko Taco?

Stacko Taco是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This chrome extension is for people who just can't get enough tacos!”。

擴展截圖

screenshot
screenshot

下載Stacko Taco擴展crx文件

下載Stacko Taco擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Stacko Taco Stacko Taco
ID dklaccacmampgfejkkkcbgchkafhfgoa
官方網址 https://chromewebstore.google.com/detail/stacko-taco/dklaccacmampgfejkkkcbgchkafhfgoa
簡介 This chrome extension is for people who just can't get enough tacos!
檔案大小 22.03 KB
安裝次數 143
目前版本 1.0
更新時間 2019-02-23
上架時間 2019-02-22
開發者 Unknown
付費類型 free
支援的語言 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\/*"
            ]
        }
    ]
}