Quick Extension Reload

Reload extensions in development from the context menu.

Что такое Quick Extension Reload?

Quick Extension Reload - это расширение Chrome, разработанное https://site.simonandrewbrown.co.uk, и его основная функция - "Reload extensions in development from the context menu.".

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

screenshot

Скачать файл CRX расширения Quick Extension Reload

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

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

                        When developing extensions, it can be a pain to go to your extensions tab, find the extension you're working on and click "reload" every time you make a change. This extension allows you to reload your extensions from the context menu.

Just right-click on any page to reload all your extensions in development, or use the default shortcut key, Alt+R.

The icon was based on icons from the Tango project. The small icon was created by Yusuke Kamiyamane.                    

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

Название Quick Extension Reload Quick Extension Reload
ID goeiakeofnlpkioeadcbocfifmgkidpb
Официальный URL https://chromewebstore.google.com/detail/quick-extension-reload/goeiakeofnlpkioeadcbocfifmgkidpb
Описание Reload extensions in development from the context menu.
Размер файла 22.71 KB
Количество установок 772
Текущая Версия 1.4
Последнее Обновление 2013-03-10
Дата публикации 2013-03-09
Рейтинг 4.00/5 Всего 15 оценок
Разработчик https://site.simonandrewbrown.co.uk
Тип оплаты free
Официальный сайт расширения http://www.isimonbrown.co.uk/contact/
URL страницы помощи http://www.isimonbrown.co.uk/contact/
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Extension Reload",
    "description": "Reload extensions in development from the context menu.",
    "version": "1.4",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "management",
        "contextMenus"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "minimum_chrome_version": "14.0",
    "commands": {
        "reload": {
            "description": "Reload all extensions in development.",
            "suggested_key": {
                "default": "Alt+R"
            }
        }
    }
}