Website Tagger

Tag websites on various conditions for easy recognition

Co je Website Tagger?

Website Tagger je rozšíření Chrome vyvinuté Kushagra Gour, a jeho hlavní funkcí je „Tag websites on various conditions for easy recognition“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Website Tagger

Stáhněte si soubory rozšíření Website Tagger ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Website Tagger Website Tagger
ID mnafbagbhobbimnofgdibonhjidgildh
Oficiální URL https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh
Popis Tag websites on various conditions for easy recognition
Velikost souboru 25.35 KB
Počet instalací 28
Aktuální Verze 1.2
Poslední Aktualizace 2020-05-17
Datum Vydání 2020-05-17
Vývojář Kushagra Gour
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}