Pinterest Tag Helper
A tool to help you build, troubleshoot and test your Pinterest Tags.
O que é Pinterest Tag Helper?
Pinterest Tag Helper é uma extensão do Chrome desenvolvida por Pinterest, Inc., e sua principal característica é "A tool to help you build, troubleshoot and test your Pinterest Tags.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pinterest Tag Helper
Baixe arquivos de extensão Pinterest Tag Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Pinterest Tag Helper |
ID | gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
URL Oficial | https://chromewebstore.google.com/detail/pinterest-tag-helper/gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
Descrição | A tool to help you build, troubleshoot and test your Pinterest Tags. |
Tamanho do Arquivo | 1.66 MB |
Contagem de Instalações | 115,713 |
Versão Atual | 0.1.16 |
Última Atualização | 2023-09-01 |
Data de Publicação | 2020-06-18 |
Classificação | 4.18/5 Total de 51 Avaliações |
Desenvolvedor | Pinterest, Inc. |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://policy.pinterest.com/en/privacy-policy |
Idiomas Suportados | 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'" } } |