Auto Refresher

Automatically refresh the page on a set interval

Что такое Auto Refresher?

Auto Refresher - это расширение Chrome, разработанное jones.kaivon, и его основная функция - "Automatically refresh the page on a set interval".

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

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

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

                        Simple and easy to use extension to auto reload the page its opened on.                    

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

Название Auto Refresher Auto Refresher
ID nlfnbbnnpiiiifgnbckjhkhpmggpailj
Официальный URL https://chrome.google.com/webstore/detail/nlfnbbnnpiiiifgnbckjhkhpmggpailj
Описание Automatically refresh the page on a set interval
Размер файла 114 KB
Количество установок 26
Текущая Версия 1.0
Последнее Обновление 2018-09-01
Дата публикации 2018-09-01
Разработчик jones.kaivon
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Refresher",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically refresh the page on a set interval",
    "icons": {
        "16": "images\/refresh-icon16.png",
        "48": "images\/refresh-icon48.png",
        "128": "images\/refresh-icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "images\/refresh-icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}