Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.1.19",
"name": "Pinterest Tag Helper",
"manifest_version": 3,
"description": "A tool to help you build, troubleshoot and test your Pinterest Tags.",
"action": {
"default_title": "Pinterest Tag Helper",
"default_popup": "popup.html",
"default_icon": "[email protected]"
},
"background": {
"service_worker": "background.js"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset",
"enabled": true,
"path": "rules.json"
}
]
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"scripting",
"storage",
"tabs",
"webRequest",
"declarativeNetRequest"
],
"host_permissions": [
"*:\/\/*\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}