Reload on Focus

Reload a tab whenever it receives the focus.

Что такое Reload on Focus?

Reload on Focus - это расширение Chrome, разработанное Stephen Blott, и его основная функция - "Reload a tab whenever it receives the focus.".

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

screenshot

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

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

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

                        This is a very simple extension which (for pages matching a list of RegExps) reloads a tab each time it receives the focus.

It is intended for developers who work a bit, then revisit Chrome to view the fruit of their labors.                    

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

Название Reload on Focus Reload on Focus
ID bhniofijcncimngchakbghfgfjijjchp
Официальный URL https://chromewebstore.google.com/detail/reload-on-focus/bhniofijcncimngchakbghfgfjijjchp
Описание Reload a tab whenever it receives the focus.
Размер файла 37.33 KB
Количество установок 93
Текущая Версия 1.0
Последнее Обновление 2019-01-05
Дата публикации 2019-01-01
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Stephen Blott
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/smblott-github/chrome-reload-on-focus
URL страницы помощи https://github.com/smblott-github/chrome-reload-on-focus/issues
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reload on Focus",
    "version": "1.0",
    "description": "Reload a tab whenever it receives the focus.",
    "minimum_chrome_version": "51.0",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "rof-content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "rof-background.js"
        ]
    },
    "options_ui": {
        "page": "rof-options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "browser_action": {
        "default_icon": "icons\/rof-off-512x512.png"
    }
}