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)」です。
拡張機能のスクリーンショット
GTM Variable Builder拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } } |