Auto redirect timer

Redirect pages after x seconds

Что такое Auto redirect timer?

Auto redirect timer - это расширение Chrome, разработанное matheus.cs007, и его основная функция - "Redirect pages after x seconds".

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

screenshot
screenshot

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

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

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

                        This extension redirects a tab of chrome to pages of your choice after x seconds.
why would you need this?
Maybe to show multiple market charts on TV, follow multiple news websites, etc.                    

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

Название Auto redirect timer Auto redirect timer
ID gnobhhnegbnhjljeaolmlnhjjmmncldg
Официальный URL https://chromewebstore.google.com/detail/auto-redirect-timer/gnobhhnegbnhjljeaolmlnhjjmmncldg
Описание Redirect pages after x seconds
Размер файла 1.83 MB
Количество установок 93
Текущая Версия 1.0.1
Последнее Обновление 2021-09-02
Дата публикации 2021-09-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик matheus.cs007
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки pt-BR
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto redirect timer",
    "manifest_version": 3,
    "version": "1.0.1",
    "description": "Redirect pages after x seconds",
    "permissions": [
        "activeTab",
        "scripting",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": ".\/images\/icon-16x16.png",
        "32": ".\/images\/icon-32x32.png",
        "48": ".\/images\/icon-48x48.png",
        "128": ".\/images\/icon-128x128.png"
    },
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "service_worker": "background.js",
        "persistence": false
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}