Pinterest Tag Helper
A tool to help you build, troubleshoot and test your Pinterest Tags.
Pinterest Tag Helper क्या है?
Pinterest Tag Helper Pinterest, Inc. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A tool to help you build, troubleshoot and test your Pinterest Tags."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pinterest Tag Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Pinterest Tag Helper |
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'" } } |