Auto redirect timer
Redirect pages after x seconds
What is Auto redirect timer?
Auto redirect timer is a Chrome extension developed by matheus.cs007, and its main feature is "Redirect pages after x seconds".
Extension Screenshots
Download Auto redirect timer Extension CRX File
Download Auto redirect timer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Auto redirect timer |
ID | gnobhhnegbnhjljeaolmlnhjjmmncldg |
Official URL | https://chromewebstore.google.com/detail/auto-redirect-timer/gnobhhnegbnhjljeaolmlnhjjmmncldg |
Description | Redirect pages after x seconds |
File Size | 1.83 MB |
Installation Count | 93 |
Current Version | 1.0.1 |
Last Updated | 2021-09-02 |
Publish Date | 2021-09-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | matheus.cs007 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } |