Pinterest Tag Helper

A tool to help you build, troubleshoot and test your Pinterest Tags.

Pinterest Tag Helperとは何ですか?

Pinterest Tag HelperはPinterest, Inc.によって開発されたChromeの拡張機能で、その主な機能は「A tool to help you build, troubleshoot and test your Pinterest Tags.」です。

拡張機能のスクリーンショット

screenshot

Pinterest Tag Helper拡張機能のCRXファイルをダウンロード

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.
Eメール [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'"
    }
}