IdleSwitcher

Auto-switches to a preset tab or cycle through tabs after the user becomes inactive.

IdleSwitcherคืออะไร?

IdleSwitcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://devinrousso.com และคุณลักษณะหลักของมันคือ "Auto-switches to a preset tab or cycle through tabs after the user becomes inactive."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IdleSwitcher

ดาวน์โหลดไฟล์ส่วนขยาย IdleSwitcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Version 1.2.0:
 - Added option to cycle through tabs with the given timeout instead of switching to a specified tab
 - Fix issue where selected tab is closed before becoming idle

Version 1.1.0:
 - Added ability to select which tab becomes active after user becomes idle
 - Tab switching now also occurs when computer becomes locked

Version 1.0.0:
 - Created Extension
 - Timeout for idle is set in minutes
 - When idle, active tab is updated to first tab
    - Will add functionality later to change this to custom tab                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ IdleSwitcher IdleSwitcher
ID elclmgibjiaeekbkpncdgpcgbachipol
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/idleswitcher/elclmgibjiaeekbkpncdgpcgbachipol
คำอธิบาย Auto-switches to a preset tab or cycle through tabs after the user becomes inactive.
ขนาดไฟล์ 30.9 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2016-09-01
วันที่เผยแพร่ 2016-08-31
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://devinrousso.com
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/dcrousso/IdleSwitcher/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "version": "1.2.0",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/timer.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "idle",
        "alarms",
        "storage",
        "tabs"
    ]
}