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是由lokico開發的Chrome擴展程式,該擴展的主要功能是“A Chromium Extension that allows you to set a timer that counts down and then closes the tab.”。

擴展截圖

screenshot
screenshot

下載Tab Countdown Timer擴展crx文件

下載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
官方網址 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'"
    }
}