Tab Countdown Timer

A Chromium Extension that allows you to set a timer that counts down and then closes the tab.

Tab Countdown Timerคืออะไร?

Tab Countdown Timer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lokico และคุณลักษณะหลักของมันคือ "A Chromium Extension that allows you to set a timer that counts down and then closes the tab."

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

screenshot
screenshot

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

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

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

                        Allows you to quickly set a countdown timer on a tab.  Once the timer expires, the tab closes.  Every tab can have a different timer.  Enter time by typing or by using a mousewheel.
---
Changes for v1.1
- Add dark mode based on current system settings
- Save last alarm values as default for next time
- Update to chrome manifest v3                    

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

ชื่อ Tab Countdown Timer Tab Countdown Timer
ID maoljenpfpdblggdbnhmegofbhhcdgle
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/tab-countdown-timer/maoljenpfpdblggdbnhmegofbhhcdgle
คำอธิบาย A Chromium Extension that allows you to set a timer that counts down and then closes the tab.
ขนาดไฟล์ 101 KB
จำนวนการติดตั้ง 6,368
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2022-11-12
วันที่เผยแพร่ 2020-08-06
คะแนน 4.29/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา lokico
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Countdown Timer",
    "version": "1.1",
    "manifest_version": 3,
    "description": "A Chromium Extension that allows you to set a timer that counts down and then closes the tab.",
    "icons": {
        "16": "icons\/hourglass16.png",
        "32": "icons\/hourglass32.png",
        "48": "icons\/hourglass48.png",
        "128": "icons\/hourglass128.png"
    },
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background\/background.js"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}