Pinterest Tag Helper
A tool to help you build, troubleshoot and test your Pinterest Tags.
Vad är Pinterest Tag Helper?
Pinterest Tag Helper är en Chrome-tillägg utvecklad av Pinterest, Inc., och dess huvudfunktion är "A tool to help you build, troubleshoot and test your Pinterest Tags.".
Tilläggsskärmbilder
Ladda ner Pinterest Tag Helper-förlängningens CRX-fil
Ladda ner Pinterest Tag Helper-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
| Officiell webbadress | https://chromewebstore.google.com/detail/pinterest-tag-helper/gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
| Beskrivning | A tool to help you build, troubleshoot and test your Pinterest Tags. |
| Filstorlek | 1.66 MB |
| Antal Installationer | 115,713 |
| Aktuell Version | 0.1.16 |
| Senast Uppdaterad | 2023-09-01 |
| Publiceringsdatum | 2020-06-18 |
| Betyg | 4.18/5 Totalt 51 Betyg |
| Utvecklare | Pinterest, Inc. |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://policy.pinterest.com/en/privacy-policy |
| Stödda Språk | 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'"
}
} | |