Website Tagger

Tag websites on various conditions for easy recognition

Website Taggerคืออะไร?

Website Tagger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kushagra Gour และคุณลักษณะหลักของมันคือ "Tag websites on various conditions for easy recognition"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Website Tagger

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}