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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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'"
    }
}