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 - это расширение Chrome, разработанное https://triangledigital.xyz, и его основная функция - "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения GTM Variable Builder

Скачайте файлы расширений GTM Variable Builder в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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