Pinterest Tag Helper
A tool to help you build, troubleshoot and test your Pinterest Tags.
Pinterest Tag Helper là gì?
Pinterest Tag Helper là một tiện ích mở rộng Chrome được phát triển bởi Pinterest, Inc., và tính năng chính của nó là "A tool to help you build, troubleshoot and test your Pinterest Tags.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pinterest Tag Helper
Tải xuống các tệp mở rộng Pinterest Tag Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pinterest Tag Helper |
ID | gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
URL Chính Thức | https://chromewebstore.google.com/detail/pinterest-tag-helper/gmlcbajhgoaaegmlbaclmmmhpmfdajmp |
Mô tả | A tool to help you build, troubleshoot and test your Pinterest Tags. |
Kích Thước Tệp | 1.66 MB |
Số Lần Cài Đặt | 115,713 |
Phiên Bản Hiện Tại | 0.1.16 |
Cập Nhật Lần Cuối | 2023-09-01 |
Ngày Phát Hành | 2020-06-18 |
Đánh Giá | 4.18/5 Tổng số 51 Đánh Giá |
Nhà Phát Triển | Pinterest, Inc. |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://policy.pinterest.com/en/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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'" } } |