Sleep Timer
Put any tab on a sleep timer to close or mute the tab when the timer expires.
O que é Sleep Timer?
Sleep Timer é uma extensão do Chrome desenvolvida por daniel.andrew.dehaas, e sua principal característica é "Put any tab on a sleep timer to close or mute the tab when the timer expires.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sleep Timer
Baixe arquivos de extensão Sleep Timer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Turn on a sleep timer for any tab. You can choose to either close or mute the tab when the timer expires.
Informações Básicas da Extensão
Nome | Sleep Timer |
ID | aogefgiamlllkemngojodbhbdigamjkj |
URL Oficial | https://chromewebstore.google.com/detail/sleep-timer/aogefgiamlllkemngojodbhbdigamjkj |
Descrição | Put any tab on a sleep timer to close or mute the tab when the timer expires. |
Tamanho do Arquivo | 25.49 KB |
Contagem de Instalações | 5,756 |
Versão Atual | 1.0 |
Última Atualização | 2021-02-03 |
Data de Publicação | 2021-02-02 |
Classificação | 2.52/5 Total de 21 Avaliações |
Desenvolvedor | daniel.andrew.dehaas |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://www.danielde.dev/ |
Idiomas Suportados | 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" } } |