Auto redirect timer
Redirect pages after x seconds
什么是Auto redirect timer?
Auto redirect timer是由matheus.cs007开发的Chrome扩展程序,该扩展的主要功能是“Redirect pages after x seconds”。
扩展截图
下载Auto redirect timer扩展crx文件
下载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 |
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" } |