Sleep Timer
Put any tab on a sleep timer to close or mute the tab when the timer expires.
Vad är Sleep Timer?
Sleep Timer är en Chrome-tillägg utvecklad av daniel.andrew.dehaas, och dess huvudfunktion är "Put any tab on a sleep timer to close or mute the tab when the timer expires.".
Tilläggsskärmbilder
Ladda ner Sleep Timer-förlängningens CRX-fil
Ladda ner Sleep Timer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.
Grundläggande Information om Tillägg
Namn | Sleep Timer |
ID | aogefgiamlllkemngojodbhbdigamjkj |
Officiell webbadress | https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj |
Beskrivning | Put any tab on a sleep timer to close or mute the tab when the timer expires. |
Filstorlek | 25.49 KB |
Antal Installationer | 5,756 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-02-03 |
Publiceringsdatum | 2021-02-02 |
Betyg | 2.52/5 Totalt 21 Betyg |
Utvecklare | daniel.andrew.dehaas |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://www.danielde.dev/ |
Stödda Språk | 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" } } |