Website Tagger

Tag websites on various conditions for easy recognition

什麼是Website Tagger?

Website Tagger是由Kushagra Gour開發的Chrome擴展程式,該擴展的主要功能是“Tag websites on various conditions for easy recognition”。

擴展截圖

screenshot

下載Website Tagger擴展crx文件

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

擴展使用說明

                        Let's say:
- You want to tag your staging and product environments differently
- You want to tag your app differently when logged into a customer's account for debugging
- You want to tag websites when they are using a certain thing in the HTML. May be they are using your library!

This extension is just for you!                    

擴展基本資訊

名稱 Website Tagger Website Tagger
ID mnafbagbhobbimnofgdibonhjidgildh
官方網址 https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh
簡介 Tag websites on various conditions for easy recognition
檔案大小 25.35 KB
安裝次數 28
目前版本 1.2
更新時間 2020-05-17
上架時間 2020-05-17
開發者 Kushagra Gour
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Tag websites on various conditions for easy recognition",
    "manifest_version": 2,
    "name": "Website Tagger",
    "version": "1.2",
    "browser_action": {
        "default_icon": "logo-64.png",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "icons": {
        "16": "logo-64.png",
        "48": "logo-64.png",
        "128": "logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage"
    ]
}