Screen Time
Captures screen time from active pages
O que é Screen Time?
Screen Time é uma extensão do Chrome desenvolvida por mac, e sua principal característica é "Captures screen time from active pages".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Screen Time
Baixe arquivos de extensão Screen Time 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
Screen Time for Google Chrome will capture time spent on sites and prepare reports same way as it done in Screen Time iOS feature. Data stored locally and does not sent anywhere. Only active tabs are counted so even if you open bazillion of pages only one at a time is active. Feel free to propose feature requests in github.
Informações Básicas da Extensão
Nome | Screen Time |
ID | plckpjcbdofdpbljigbjkohpfccafged |
URL Oficial | https://chromewebstore.google.com/detail/screen-time/plckpjcbdofdpbljigbjkohpfccafged |
Descrição | Captures screen time from active pages |
Tamanho do Arquivo | 129 KB |
Contagem de Instalações | 233 |
Versão Atual | 1.0.0 |
Última Atualização | 2020-12-12 |
Data de Publicação | 2020-12-08 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | mac |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mac2000/screentime |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Screen Time", "version": "1.0.0", "description": "Captures screen time from active pages", "short_name": "screentime", "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_title": "Does a thing when you do a thing", "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } } |