Twitter News Feed Burner

Saves you from being distracted by Twitter's news feed.

¿Qué es Twitter News Feed Burner?

Twitter News Feed Burner es una extensión de Chrome desarrollada por Dmitri Kyle Brereton, y su función principal es "Saves you from being distracted by Twitter's news feed.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Twitter News Feed Burner

Descarga archivos de extensión Twitter News Feed Burner en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Twitter News Feed Burner Twitter News Feed Burner
ID lbingojadaoinncfdhibfodloihablbi
URL Oficial https://chromewebstore.google.com/detail/twitter-news-feed-burner/lbingojadaoinncfdhibfodloihablbi
Descripción Saves you from being distracted by Twitter's news feed.
Tamaño del Archivo 41.69 KB
Cantidad de Instalaciones 109
Versión Actual 1.1
Última Actualización 2019-09-05
Fecha de Publicación 2019-09-04
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Dmitri Kyle Brereton
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        ]
    }
}