GTM Variable Builder

From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)

GTM Variable Builder란 무엇입니까?

GTM Variable Builder은(는) https://triangledigital.xyz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)"입니다.

확장 프로그램 스크린샷

screenshot

GTM Variable Builder 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        GTM Variable Builder:

This tool makes it easy for you to highlight key parts of a website, such as text, product IDs, prices, or page titles. Simply select the content you're interested in and click on the extension's icon. To check what you've highlighted, head over to the JS console in Google Chrome.

Run the JavaScript code provided by the tool in the console. If it successfully captures your highlighted content, you can then use this in a custom Google Tag Manager variable, or in any other place where you need to submit product information, values, IDs, and so on.                    

확장 프로그램 기본 정보

이름 GTM Variable Builder GTM Variable Builder
ID feeboihdgpananoagfmbohoogoncndba
공식 URL https://chromewebstore.google.com/detail/gtm-variable-builder/feeboihdgpananoagfmbohoogoncndba
설명 From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)
파일 크기 82.71 KB
설치 횟수 34,959
현재 버전 3.2
최근 업데이트 2024-02-26
출시 날짜 2017-06-22
평점 4.44/5 총 25 개의 평점
개발자 https://triangledigital.xyz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://triangledigital.xyz/gtm-variable-builder
도움말 페이지 URL https://koalendar.com/e/meet-with-a-triangle-digital-team-member
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GTM Variable Builder",
    "description": "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)",
    "version": "3.2",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_name": "Enable Remarketing Selector",
        "default_icon": "icon.png"
    }
}