Twitter News Feed Burner
Saves you from being distracted by Twitter's news feed.
Cos'è Twitter News Feed Burner?
Twitter News Feed Burner è un'estensione di Chrome sviluppata da Dmitri Kyle Brereton, e la sua funzione principale è "Saves you from being distracted by Twitter's news feed.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Twitter News Feed Burner
Scarica i file di estensione Twitter News Feed Burner 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
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.
Informazioni di Base sull'Estensione
Nome | Twitter News Feed Burner |
ID | lbingojadaoinncfdhibfodloihablbi |
URL Ufficiale | https://chromewebstore.google.com/detail/twitter-news-feed-burner/lbingojadaoinncfdhibfodloihablbi |
Descrizione | Saves you from being distracted by Twitter's news feed. |
Dimensione del File | 41.69 KB |
Conteggio Installazioni | 109 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2019-09-05 |
Data di Pubblicazione | 2019-09-04 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Dmitri Kyle Brereton |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } } |