GTM Debug Down
Keep GTM debug pane down while on preview mode as your preference.
什么是GTM Debug Down?
GTM Debug Down是由Paul O'Gorman开发的Chrome扩展程序,该扩展的主要功能是“Keep GTM debug pane down while on preview mode as your preference.”。
扩展截图
下载GTM Debug Down扩展crx文件
下载GTM Debug Down扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you're like me, sometimes I need to preview Google Tag Manager (GTM) changes without the debug pane being visible. Hopefully this will help you like it helped me...
扩展基本信息
名称 | GTM Debug Down |
ID | jkafjapgjmbbgkigffbflbffmenhallh |
官方URL | https://chromewebstore.google.com/detail/gtm-debug-down/jkafjapgjmbbgkigffbflbffmenhallh |
简介 | Keep GTM debug pane down while on preview mode as your preference. |
文件大小 | 11.65 KB |
安装次数 | 60 |
当前版本 | 0.1 |
更新时间 | 2019-02-05 |
上架时间 | 2019-02-03 |
评分 | 5.00/5 共1次评分 |
开发者 | Paul O'Gorman |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GTM Debug Down", "version": "0.1", "permissions": [ "activeTab" ], "description": "Keep GTM debug pane down while on preview mode as your preference.", "browser_action": { "default_title": "GTM Debug Down", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content.js" ] } ], "icons": { "16": "images\/img16.png", "32": "images\/img32.png", "48": "images\/img48.png", "128": "images\/img128.png" } } |