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 |
Eメール | [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" } |