StayFresh Page Refresher

An open-source extension that refreshes pages at set intervals

Что такое StayFresh Page Refresher?

StayFresh Page Refresher - это расширение Chrome, разработанное Michael Goen, и его основная функция - "An open-source extension that refreshes pages at set intervals".

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

screenshot

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

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

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

                        Choose a single URL, or all URLs at a domain to refresh periodically depending on the chosen time.

The extension remembers your settings and can have multiple URLs refreshing at once.

I'm open to suggestions for new features or improvements, feel free to leave a comment in the support section.

The source code can be found at my github:
https://github.com/mikegoen/stayfresh-extension                    

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

Название StayFresh Page Refresher StayFresh Page Refresher
ID fjcgdkhnikhjmijgldhfbjjnnjdfjljd
Официальный URL https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd
Описание An open-source extension that refreshes pages at set intervals
Размер файла 101 KB
Количество установок 158
Текущая Версия 1.0.0
Последнее Обновление 2017-02-26
Дата публикации 2017-02-26
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Michael Goen
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "StayFresh Page Refresher",
    "description": "An open-source extension that refreshes pages at set intervals",
    "version": "1.0.0",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}