GTM Debug Down
Keep GTM debug pane down while on preview mode as your preference.
Что такое GTM Debug Down?
GTM Debug Down - это расширение Chrome, разработанное Paul O'Gorman, и его основная функция - "Keep GTM debug pane down while on preview mode as your preference.".
Снимки экрана расширения
Скачать файл CRX расширения GTM Debug Down
Скачайте файлы расширений 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... Основная информация о расширении
| Название | |
| 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"
}
} | |