Drupal themer
A simple debug tool for Drupal themers
Что такое Drupal themer?
Drupal themer - это расширение Chrome, разработанное chi-teck, и его основная функция - "A simple debug tool for Drupal themers".
Снимки экрана расширения
Скачать файл CRX расширения Drupal themer
Скачайте файлы расширений Drupal themer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
To start using enable theme debug mode on a target site and click Druplicon icon in the Chrome address bar.
Основная информация о расширении
Название | Drupal themer |
ID | gjlghpombfhkhigbcphenialnhbeolhd |
Официальный URL | https://chromewebstore.google.com/detail/drupal-themer/gjlghpombfhkhigbcphenialnhbeolhd |
Описание | A simple debug tool for Drupal themers |
Размер файла | 216 KB |
Количество установок | 296 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2015-10-05 |
Дата публикации | 2015-10-05 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | chi-teck |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/Chi-teck/drupal-themer |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Drupal themer", "permissions": [], "version": "1.0.1", "background": { "persistent": false, "scripts": [ "background.js" ] }, "page_action": { "default_icon": "\/images\/16-disabled.png", "default_title": "Enable theme debugging" }, "content_scripts": [ { "js": [ "bower_components\/jquery\/dist\/jquery.min.js", "bower_components\/jquery-ui\/jquery-ui.min.js", "content.js" ], "css": [ "bower_components\/jquery-ui\/themes\/redmond\/jquery-ui.min.css", "bower_components\/jquery-ui\/themes\/redmond\/theme.css", "content.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ "bower_components\/jquery\/dist\/jquery.min.map", "bower_components\/jquery-ui\/images\/*", "bower_components\/jquery-ui\/themes\/redmond\/images\/*" ], "description": "A simple debug tool for Drupal themers", "icons": { "16": "images\/16-enabled.png", "32": "images\/32-enabled.png", "64": "images\/64-enabled.png", "128": "images\/128-enabled.png" } } |