Auto redirect timer
Redirect pages after x seconds
Auto redirect timerคืออะไร?
Auto redirect timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matheus.cs007 และคุณลักษณะหลักของมันคือ "Redirect pages after x seconds"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto redirect timer
ดาวน์โหลดไฟล์ส่วนขยาย 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" } |