MightyHive Site Tools
Displays active trackers, tagging containers, and network activity present on the page.
Wat is MightyHive Site Tools?
MightyHive Site Tools is een Chrome-extensie ontwikkeld door MightyHive, en de belangrijkste functie is "Displays active trackers, tagging containers, and network activity present on the page.".
Extensie Screenshots
Download het CRX-bestand van de extensie MightyHive Site Tools
Download MightyHive Site Tools-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
MIghtyHive Site Tools displays active trackers, tagging containers, and network activity for any website. Ad ops and digital advertising professionals can use MightyHive Site Tools to assist with tagging audits, tracing data flow between redirects, and parsing query parameters from network activity. You can download the entire tracker list, network activity, and any data layer object for in-depth inspection.
Basisinformatie over de Extensie
Naam | MightyHive Site Tools |
ID | fpgljbjinlladnbmjndbjoohkjjcmidj |
Officiële URL | https://chromewebstore.google.com/detail/mightyhive-site-tools/fpgljbjinlladnbmjndbjoohkjjcmidj |
Beschrijving | Displays active trackers, tagging containers, and network activity present on the page. |
Bestandsgrootte | 1.17 MB |
Aantal Installaties | 420 |
Huidige Versie | 1.1.0 |
Laatst Bijgewerkt | 2018-05-16 |
Publicatiedatum | 2018-05-16 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | MightyHive |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://mightyhive.com/privacy |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MightyHive Site Tools", "description": "Displays active trackers, tagging containers, and network activity present on the page.", "version": "1.1.0", "icons": { "16": ".\/assets\/img\/icon16.png", "48": ".\/assets\/img\/icon48.png", "128": ".\/assets\/img\/icon128.png", "256": ".\/assets\/img\/icon256.png" }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": ".\/assets\/img\/icon16.png", "48": ".\/assets\/img\/icon48.png", "128": ".\/assets\/img\/icon128.png", "256": ".\/assets\/img\/icon256.png" } }, "background": { "scripts": [ "backgroundScript.js" ] }, "options_ui": { "page": "options.html", "chrome_style": false }, "permissions": [ "downloads", "tabs", "webRequest", "storage", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ "injectedScript.js" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |