Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Tag Master",
"version": "1.2.1",
"description": "\ud83d\udc8d One Extension to Rule Them All - Professional GA4 & GTM Debugging Toolkit",
"author": "hsynkvlc",
"permissions": [
"storage",
"unlimitedStorage",
"tabs",
"scripting",
"sidePanel",
"cookies",
"webRequest",
"webNavigation",
"activeTab"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "background\/service-worker.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content\/content-script.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"js": [
"content\/page-script.js"
],
"run_at": "document_start",
"world": "MAIN",
"all_frames": true
}
],
"side_panel": {
"default_path": "sidepanel\/sidepanel.html"
},
"action": {
"default_popup": "popup\/popup.html",
"default_icon": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"default_title": "Tag Master"
},
"icons": {
"16": "assets\/icons\/icon16.png",
"32": "assets\/icons\/icon32.png",
"48": "assets\/icons\/icon48.png",
"128": "assets\/icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"shared\/*"
],
"matches": [
"<all_urls>"
]
}
],
"minimum_chrome_version": "116",
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}