Twitter Timer
This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.
O que é Twitter Timer?
Twitter Timer é uma extensão do Chrome desenvolvida por Haruya Nakamura, e sua principal característica é "This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter Timer
Baixe arquivos de extensão Twitter 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
【To you who want to break out of Twitter】 This extension gives people who just watch too much Twitter time to concentrate on their work. If you want to stop watching Twitter, try setting this extension. When you open the Twitter site (twitter.com), this extension will automatically close Twitter open tabs after a set amount of time.
Informações Básicas da Extensão
Nome | Twitter Timer |
ID | dbpliifabeopadfiaejlchjmdonpgdne |
URL Oficial | https://chromewebstore.google.com/detail/twitter-timer/dbpliifabeopadfiaejlchjmdonpgdne |
Descrição | This timer sets the displayable time of Twitter. When the set time elapses, the tab closes without permission. |
Tamanho do Arquivo | 1.03 MB |
Contagem de Instalações | 60 |
Versão Atual | 2 |
Última Atualização | 2020-03-30 |
Data de Publicação | 2020-03-26 |
Desenvolvedor | Haruya Nakamura |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "short_name": "__MSG_short_name__", "version": "2", "manifest_version": 2, "description": "__MSG_description__", "default_locale": "en", "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "script.js" ] } ], "background": { "scripts": [ "backend.js" ] }, "permissions": [ "tabs", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_popup": "options.html" } } |