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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 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'"
    }
}