MightyHive Site Tools
Displays active trackers, tagging containers, and network activity present on the page.
What is MightyHive Site Tools?
MightyHive Site Tools is a Chrome extension developed by MightyHive, and its main feature is "Displays active trackers, tagging containers, and network activity present on the page.".
Extension Screenshots
Download MightyHive Site Tools Extension CRX File
Download MightyHive Site Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | MightyHive Site Tools |
ID | fpgljbjinlladnbmjndbjoohkjjcmidj |
Official URL | https://chromewebstore.google.com/detail/mightyhive-site-tools/fpgljbjinlladnbmjndbjoohkjjcmidj |
Description | Displays active trackers, tagging containers, and network activity present on the page. |
File Size | 1.17 MB |
Installation Count | 420 |
Current Version | 1.1.0 |
Last Updated | 2018-05-16 |
Publish Date | 2018-05-16 |
Rating | 5.00/5 Total 1 Ratings |
Developer | MightyHive |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://mightyhive.com/privacy |
Supported Languages | 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'" } |