Auto-Reload Target URL

Reloads a target URL every specified seconds.

Что такое Auto-Reload Target URL?

Auto-Reload Target URL - это расширение Chrome, разработанное jon, и его основная функция - "Reloads a target URL every specified seconds.".

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

screenshot

Скачать файл CRX расширения Auto-Reload Target URL

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

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

                        Simple tool to automatically reload the webpage in the current tab. 

Supports any interval from 1 second to 10000.

The extension is open source and does not collect any information.                    

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

Название Auto-Reload Target URL Auto-Reload Target URL
ID fbofpnajkcpnpillmmfhggjandclmjgj
Официальный URL https://chromewebstore.google.com/detail/auto-reload-target-url/fbofpnajkcpnpillmmfhggjandclmjgj
Описание Reloads a target URL every specified seconds.
Размер файла 36.3 KB
Количество установок 1,299
Текущая Версия 1.4.1
Последнее Обновление 2022-06-25
Дата публикации 2017-12-09
Рейтинг 4.60/5 Всего 5 оценок
Разработчик jon
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/jondb/auto-reload
URL страницы помощи https://github.com/jondb/auto-reload/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto-Reload Target URL",
    "version": "1.4.1",
    "manifest_version": 3,
    "description": "Reloads a target URL every specified seconds.",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "stopwatch22.png",
        "default_popup": "info.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "timer.js"
            ]
        }
    ],
    "host_permissions": [
        "http:\/\/*\/*"
    ],
    "permissions": [
        "tabs",
        "storage",
        "alarms"
    ],
    "icons": {
        "16": "stopwatch16.png",
        "48": "stopwatch48.png",
        "128": "stopwatch128.png"
    }
}