Auto redirect timer
Redirect pages after x seconds
Co to jest Auto redirect timer?
Auto redirect timer to rozszerzenie Chrome opracowane przez matheus.cs007, a jego główną funkcją jest „Redirect pages after x seconds”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Auto redirect timer
Pobierz pliki rozszerzeń Auto redirect timer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Auto redirect timer |
ID | gnobhhnegbnhjljeaolmlnhjjmmncldg |
Oficjalny URL | https://chromewebstore.google.com/detail/auto-redirect-timer/gnobhhnegbnhjljeaolmlnhjjmmncldg |
Opis | Redirect pages after x seconds |
Rozmiar pliku | 1.83 MB |
Liczba instalacji | 93 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2021-09-02 |
Data Publikacji | 2021-09-01 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | matheus.cs007 |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } |