Sleep Timer

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

什么是Sleep Timer?

Sleep Timer是由daniel.andrew.dehaas开发的Chrome扩展程序,该扩展的主要功能是“Put any tab on a sleep timer to close or mute the tab when the timer expires.”。

扩展截图

screenshot

下载Sleep Timer扩展crx文件

下载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"
    }
}