Twitter News Feed Burner
Saves you from being distracted by Twitter's news feed.
O que é Twitter News Feed Burner?
Twitter News Feed Burner é uma extensão do Chrome desenvolvida por Dmitri Kyle Brereton, e sua principal característica é "Saves you from being distracted by Twitter's news feed.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Twitter News Feed Burner
Baixe arquivos de extensão Twitter News Feed Burner 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
Have you ever visited Twitter to make a quick tweet, but ended up spending more time there because you got distracted by the news feed? Well you don't have to worry about that anymore. With this extension, you can hide your news feed to avoid distractions. Whenever you want to browse Twitter intentionally, you can easily turn the news feed back on.
Informações Básicas da Extensão
Nome | Twitter News Feed Burner |
ID | lbingojadaoinncfdhibfodloihablbi |
URL Oficial | https://chromewebstore.google.com/detail/twitter-news-feed-burner/lbingojadaoinncfdhibfodloihablbi |
Descrição | Saves you from being distracted by Twitter's news feed. |
Tamanho do Arquivo | 41.69 KB |
Contagem de Instalações | 109 |
Versão Atual | 1.1 |
Última Atualização | 2019-09-05 |
Data de Publicação | 2019-09-04 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Dmitri Kyle Brereton |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter News Feed Burner", "description": "Saves you from being distracted by Twitter's news feed.", "version": "1.1", "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*" ], "js": [ "jquery.min.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "webNavigation", "declarativeContent", "activeTab" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "background": { "scripts": [ "background.js" ] } } |