Pinterest Tag Helper
A tool to help you build, troubleshoot and test your Pinterest Tags.
Что такое Pinterest Tag Helper?
Pinterest Tag Helper - это расширение Chrome, разработанное Pinterest, Inc., и его основная функция - "A tool to help you build, troubleshoot and test your Pinterest Tags.".
Снимки экрана расширения
Скачать файл CRX расширения Pinterest Tag Helper
Скачайте файлы расширений Pinterest Tag Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
| Официальный URL | https://chromewebstore.google.com/detail/pinterest-tag-helper/gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
| Описание | A tool to help you build, troubleshoot and test your Pinterest Tags. |
| Размер файла | 1.66 MB |
| Количество установок | 115,713 |
| Текущая Версия | 0.1.16 |
| Последнее Обновление | 2023-09-01 |
| Дата публикации | 2020-06-18 |
| Рейтинг | 4.18/5 Всего 51 оценок |
| Разработчик | Pinterest, Inc. |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://policy.pinterest.com/en/privacy-policy |
| Поддерживаемые языки | 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'"
}
} | |