Auto redirect timer
Redirect pages after x seconds
Vad är Auto redirect timer?
Auto redirect timer är en Chrome-tillägg utvecklad av matheus.cs007, och dess huvudfunktion är "Redirect pages after x seconds".
Tilläggsskärmbilder
Ladda ner Auto redirect timer-förlängningens CRX-fil
Ladda ner Auto redirect timer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Auto redirect timer |
ID | gnobhhnegbnhjljeaolmlnhjjmmncldg |
Officiell webbadress | https://chromewebstore.google.com/detail/auto-redirect-timer/gnobhhnegbnhjljeaolmlnhjjmmncldg |
Beskrivning | Redirect pages after x seconds |
Filstorlek | 1.83 MB |
Antal Installationer | 93 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2021-09-02 |
Publiceringsdatum | 2021-09-01 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | matheus.cs007 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } |