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. 擴展基本資訊
| 名稱 | |
| ID | gnobhhnegbnhjljeaolmlnhjjmmncldg |
| 官方網址 | 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"
} | |