Website Tagger

Tag websites on various conditions for easy recognition

Website Tagger là gì?

Website Tagger là một tiện ích mở rộng Chrome được phát triển bởi Kushagra Gour, và tính năng chính của nó là "Tag websites on various conditions for easy recognition".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Tagger

Tải xuống các tệp mở rộng Website Tagger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Tagger Website Tagger
ID mnafbagbhobbimnofgdibonhjidgildh
URL Chính Thức https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh
Mô tả Tag websites on various conditions for easy recognition
Kích Thước Tệp 25.35 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2020-05-17
Ngày Phát Hành 2020-05-17
Nhà Phát Triển Kushagra Gour
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}