Auto Refresh

Reload the web page automatically in the time interval that you want.

Что такое Auto Refresh?

Auto Refresh - это расширение Chrome, разработанное https://stni.pw, и его основная функция - "Reload the web page automatically in the time interval that you want.".

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

screenshot

Скачать файл CRX расширения Auto Refresh

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

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

                        Reload web pages automatically in the time interval that you want.

A Shitian Ni Project                    

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

Название Auto Refresh Auto Refresh
ID omcjgdddgjlioknfggaelopggehgfcea
Официальный URL https://chromewebstore.google.com/detail/auto-refresh/omcjgdddgjlioknfggaelopggehgfcea
Описание Reload the web page automatically in the time interval that you want.
Размер файла 43.26 KB
Количество установок 6,749
Текущая Версия 1.0.6
Последнее Обновление 2016-06-26
Дата публикации 2016-06-26
Рейтинг 3.00/5 Всего 4 оценок
Разработчик https://stni.pw
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresh",
    "short_name": "Refresh",
    "version": "1.0.6",
    "manifest_version": 2,
    "description": "Reload the web page automatically in the time interval that you want.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "permissions": [
        "",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "content.js"
            ]
        }
    ]
}