Sleep Timer

Put any tab on a sleep timer to close or mute the tab when the timer expires.

Sleep Timerคืออะไร?

Sleep Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย daniel.andrew.dehaas และคุณลักษณะหลักของมันคือ "Put any tab on a sleep timer to close or mute the tab when the timer expires."

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

screenshot

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

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

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

                        Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.                    

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

ชื่อ Sleep Timer Sleep Timer
ID aogefgiamlllkemngojodbhbdigamjkj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj
คำอธิบาย Put any tab on a sleep timer to close or mute the tab when the timer expires.
ขนาดไฟล์ 25.49 KB
จำนวนการติดตั้ง 5,756
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-02-03
วันที่เผยแพร่ 2021-02-02
คะแนน 2.52/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา daniel.andrew.dehaas
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://www.danielde.dev/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sleep Timer",
    "version": "1.0",
    "description": "Put any tab on a sleep timer to close or mute the tab when the timer expires.",
    "permissions": [
        "tabs",
        "alarms",
        "storage"
    ],
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "128": "icons\/icon-128.png"
        },
        "default_popup": "popup\/popup.html",
        "default_title": "Sleep Timer"
    }
}