Pinterest Tag Helper
A tool to help you build, troubleshoot and test your Pinterest Tags.
Co je Pinterest Tag Helper?
Pinterest Tag Helper je rozšíření Chrome vyvinuté Pinterest, Inc., a jeho hlavní funkcí je „A tool to help you build, troubleshoot and test your Pinterest Tags.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Pinterest Tag Helper
Stáhněte si soubory rozšíření Pinterest Tag Helper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
For more details on how to use the extension, visit our Developer Center. https://developers.pinterest.com/docs/conversions/pinterest-tag-helper-chrome/ Release note for version 0.1.16: UI Improvements and adding Google Analytics functionality
Základní Informace o Rozšíření
Název | Pinterest Tag Helper |
ID | gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
Oficiální URL | https://chromewebstore.google.com/detail/pinterest-tag-helper/gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
Popis | A tool to help you build, troubleshoot and test your Pinterest Tags. |
Velikost souboru | 1.66 MB |
Počet instalací | 115,713 |
Aktuální Verze | 0.1.16 |
Poslední Aktualizace | 2023-09-01 |
Datum Vydání | 2020-06-18 |
Hodnocení | 4.18/5 Celkem 51 Hodnocení |
Vývojář | Pinterest, Inc. |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://policy.pinterest.com/en/privacy-policy |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.16", "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'" } } |