MightyHive Site Tools
Displays active trackers, tagging containers, and network activity present on the page.
Hvad er MightyHive Site Tools?
MightyHive Site Tools er en Chrome-udvidelse udviklet af MightyHive, og dens hovedfunktion er "Displays active trackers, tagging containers, and network activity present on the page.".
Udvidelsesskærmbilleder
Download MightyHive Site Tools-udvidelses-CRX-fil
Download MightyHive Site Tools-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | MightyHive Site Tools |
ID | fpgljbjinlladnbmjndbjoohkjjcmidj |
Officiel URL | https://chromewebstore.google.com/detail/mightyhive-site-tools/fpgljbjinlladnbmjndbjoohkjjcmidj |
Beskrivelse | Displays active trackers, tagging containers, and network activity present on the page. |
Filstørrelse | 1.17 MB |
Antal Installationer | 420 |
Nuværende Version | 1.1.0 |
Senest Opdateret | 2018-05-16 |
Udgivelsesdato | 2018-05-16 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | MightyHive |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://mightyhive.com/privacy |
Understøttede Sprog | 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'" } |