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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "From Chrome Developer Console, highlight elements to get JavaScript code. Built by: Triangle Digital (Triangledigital.xyz)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GTM Variable Builder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |