Sleep Timer
Put any tab on a sleep timer to close or mute the tab when the timer expires.
What is Sleep Timer?
Sleep Timer is a Chrome extension developed by daniel.andrew.dehaas, and its main feature is "Put any tab on a sleep timer to close or mute the tab when the timer expires.".
Extension Screenshots
Download Sleep Timer Extension CRX File
Download Sleep Timer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.
Extension Basic Information
Name | Sleep Timer |
ID | aogefgiamlllkemngojodbhbdigamjkj |
Official URL | https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj |
Description | Put any tab on a sleep timer to close or mute the tab when the timer expires. |
File Size | 25.49 KB |
Installation Count | 5,756 |
Current Version | 1.0 |
Last Updated | 2021-02-03 |
Publish Date | 2021-02-02 |
Rating | 2.52/5 Total 21 Ratings |
Developer | daniel.andrew.dehaas |
[email protected] | |
Payment Type | free |
Help Page URL | https://www.danielde.dev/ |
Supported Languages | 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" } } |