TagTag Check Extension
This extension helps to validate admitad integration
Was ist TagTag Check Extension?
TagTag Check Extension ist eine Chrome-Erweiterung, die von Admitad entwickelt wurde, und ihr Hauptmerkmal ist "This extension helps to validate admitad integration".
Erweiterungsscreenshots
TagTag Check Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie TagTag Check Extension-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
The extension allows the user to check if the JavaScript for order registration is installed and configured correctly: – Checking if the script is available on all pages of the site. – Checking if the script is embedded ("installed") correctly. – Checking operation of the error handler script. – Checking the setting of environment variables in the script. – Checking if campaign_code is set correctly. – Checking if the first-party cookie is deployed.
Grundlegende Informationen zur Erweiterung
Name | TagTag Check Extension |
ID | hfgfandfmfdmdjbjkhdcnkoohgiocdac |
Offizielle URL | https://chromewebstore.google.com/detail/tagtag-check-extension/hfgfandfmfdmdjbjkhdcnkoohgiocdac |
Beschreibung | This extension helps to validate admitad integration |
Dateigröße | 1.09 MB |
Installationsanzahl | 1,259 |
Aktuelle Version | 0.3.0 |
Letztes Update | 2022-06-25 |
Veröffentlichungsdatum | 2019-03-25 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Admitad |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://help.admitad.com/en/advertiser/topic/189-integration-via-tracking-code#testing |
URL der Datenschutzrichtlinien-Seite | https://terms.admitad.com/en/privacy-policy/admitad-privacy-policy-intro |
Unterstützte Sprachen | ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TagTag Check Extension", "description": "This extension helps to validate admitad integration", "version": "0.3.0", "action": { "default_popup": "index.html" }, "icons": { "16": "logo-small.png", "48": "logo-small.png", "128": "logo-small.png" }, "permissions": [ "webRequest", "webNavigation", "storage" ], "host_permissions": [ "*:\/\/*\/*" ], "externally_connectable": { "ids": [ "jekoifodgifignfilbdfdadjkjmmgcek", "hfgfandfmfdmdjbjkhdcnkoohgiocdac", "kfdcjogkhbigomkfbppoeiieliikdofa", "igjkhdgaoimjdaocmfcdodehkkeocign" ] }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "content_security_policy": { "script-src": "self", "object-src": "self" }, "web_accessible_resources": [ { "resources": [ "inject.js" ], "matches": [ "https:\/\/*\/*" ], "extension_ids": [ "kfdcjogkhbigomkfbppoeiieliikdofa", "igjkhdgaoimjdaocmfcdodehkkeocign" ] } ] } |