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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pinterest Tag Helper 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'"
    }
}