Website Tagger

Tag websites on various conditions for easy recognition

Wat is Website Tagger?

Website Tagger is een Chrome-extensie ontwikkeld door Kushagra Gour, en de belangrijkste functie is "Tag websites on various conditions for easy recognition".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Website Tagger

Download Website Tagger-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Website Tagger Website Tagger
ID mnafbagbhobbimnofgdibonhjidgildh
Officiële URL https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh
Beschrijving Tag websites on various conditions for easy recognition
Bestandsgrootte 25.35 KB
Aantal Installaties 28
Huidige Versie 1.2
Laatst Bijgewerkt 2020-05-17
Publicatiedatum 2020-05-17
Ontwikkelaar Kushagra Gour
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}