Sleep Timer
Put any tab on a sleep timer to close or mute the tab when the timer expires.
Qu'est-ce que Sleep Timer ?
Sleep Timer est une extension Chrome développée par daniel.andrew.dehaas, et sa fonction principale est "Put any tab on a sleep timer to close or mute the tab when the timer expires.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sleep Timer
Téléchargez les fichiers d'extension Sleep Timer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.
Informations de Base sur l'Extension
Nom | Sleep Timer |
ID | aogefgiamlllkemngojodbhbdigamjkj |
URL Officiel | 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. |
Taille du Fichier | 25.49 KB |
Nombre d'Installations | 5,756 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-02-03 |
Date de Publication | 2021-02-02 |
Évaluation | 2.52/5 Total 21 Évaluations |
Développeur | daniel.andrew.dehaas |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://www.danielde.dev/ |
Langues Prises en Charge | 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" } } |