Sleep Timer
Put any tab on a sleep timer to close or mute the tab when the timer expires.
Cos'è Sleep Timer?
Sleep Timer è un'estensione di Chrome sviluppata da daniel.andrew.dehaas, e la sua funzione principale è "Put any tab on a sleep timer to close or mute the tab when the timer expires.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Sleep Timer
Scarica i file di estensione Sleep Timer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires. Informazioni di Base sull'Estensione
| Nome | |
| ID | aogefgiamlllkemngojodbhbdigamjkj |
| URL Ufficiale | https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj |
| Descrizione | Put any tab on a sleep timer to close or mute the tab when the timer expires. |
| Dimensione del File | 25.49 KB |
| Conteggio Installazioni | 5,756 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-02-03 |
| Data di Pubblicazione | 2021-02-02 |
| Valutazione | 2.52/5 Totale 21 Valutazioni |
| Sviluppatore | daniel.andrew.dehaas |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://www.danielde.dev/ |
| Lingue Supportate | 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"
}
} | |