Drupal PHP Editor

Provides a good view for the Devel PHP form

Что такое Drupal PHP Editor?

Drupal PHP Editor - это расширение Chrome, разработанное ksis, и его основная функция - "Provides a good view for the Devel PHP form".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Drupal PHP Editor

Скачайте файлы расширений Drupal PHP Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Provides a wrapper for the default Execute PHP form provided by the Devel module                    

Основная информация о расширении

Название Drupal PHP Editor Drupal PHP Editor
ID lpmbnpciidbandddcngaphijfealpgoi
Официальный URL https://chromewebstore.google.com/detail/drupal-php-editor/lpmbnpciidbandddcngaphijfealpgoi
Описание Provides a good view for the Devel PHP form
Размер файла 16.25 KB
Количество установок 39
Текущая Версия 0.5
Последнее Обновление 2022-02-10
Дата публикации 2020-05-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик ksis
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Drupal PHP Editor",
    "version": "0.5",
    "description": "Provides a good view for the Devel PHP form",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "drupal-php-editor.js",
        "drupal-php-editor.css",
        "d7_autocompletions.json",
        "d8_autocompletions.json",
        "d9_autocompletions.json"
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}