Reload All Tabs

This extension reloads all tabs in the active window.

Что такое Reload All Tabs?

Reload All Tabs - это расширение Chrome, разработанное matthewlberg, и его основная функция - "This extension reloads all tabs in the active window.".

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

screenshot

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

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

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

                        This extension allows you to refresh all tabs with a simple click of a button. You can also use the keyboard shortcut Alt + Shift + R to reload all tabs.                    

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

Название Reload All Tabs Reload All Tabs
ID lgpdljdpanfecnpindkbnikegohoobci
Официальный URL https://chromewebstore.google.com/detail/reload-all-tabs/lgpdljdpanfecnpindkbnikegohoobci
Описание This extension reloads all tabs in the active window.
Размер файла 4.38 KB
Количество установок 46,699
Текущая Версия 1.0
Последнее Обновление 2014-01-16
Дата публикации 2014-01-16
Рейтинг 4.47/5 Всего 58 оценок
Разработчик matthewlberg
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload All Tabs",
    "description": "This extension reloads all tabs in the active window.",
    "version": "1.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "Reload all tabs"
        }
    },
    "permissions": [
        "tabs",
        "background"
    ]
}