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.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | aogefgiamlllkemngojodbhbdigamjkj |
| 官方網址 | 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"
}
} | |