Website Tagger
Tag websites on various conditions for easy recognition
Was ist Website Tagger?
Website Tagger ist eine Chrome-Erweiterung, die von Kushagra Gour entwickelt wurde, und ihr Hauptmerkmal ist "Tag websites on various conditions for easy recognition".
Erweiterungsscreenshots
Website Tagger-Erweiterungs-CRX-Datei herunterladen
Laden Sie Website Tagger-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mnafbagbhobbimnofgdibonhjidgildh |
| Offizielle URL | https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh |
| Beschreibung | Tag websites on various conditions for easy recognition |
| Dateigröße | 25.35 KB |
| Installationsanzahl | 28 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2020-05-17 |
| Veröffentlichungsdatum | 2020-05-17 |
| Entwickler | Kushagra Gour |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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": [
" | |