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.”。
扩展截图
下载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                     扩展基本信息
| 名称 |   |  
| 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'"
    }
}  |  |