Pinterest Tag Helper
A tool to help you build, troubleshoot and test your Pinterest Tags.
Co to jest Pinterest Tag Helper?
Pinterest Tag Helper to rozszerzenie Chrome opracowane przez Pinterest, Inc., a jego główną funkcją jest „A tool to help you build, troubleshoot and test your Pinterest Tags.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pinterest Tag Helper
Pobierz pliki rozszerzeń Pinterest Tag Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Pinterest Tag Helper |
ID | gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
Oficjalny URL | https://chromewebstore.google.com/detail/pinterest-tag-helper/gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
Opis | A tool to help you build, troubleshoot and test your Pinterest Tags. |
Rozmiar pliku | 1.66 MB |
Liczba instalacji | 115,713 |
Aktualna Wersja | 0.1.16 |
Ostatnia Aktualizacja | 2023-09-01 |
Data Publikacji | 2020-06-18 |
Ocena | 4.18/5 Łącznie 51 Oceny |
Deweloper | Pinterest, Inc. |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://policy.pinterest.com/en/privacy-policy |
Obsługiwane Języki | 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'" } } |