Twitter News Feed Burner

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

What is Twitter News Feed Burner?

Twitter News Feed Burner is a Chrome extension developed by Dmitri Kyle Brereton, and its main feature is "Saves you from being distracted by Twitter's news feed.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Twitter News Feed Burner Extension CRX File

Download Twitter News Feed Burner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Twitter News Feed Burner Twitter News Feed Burner
ID lbingojadaoinncfdhibfodloihablbi
Official URL https://chromewebstore.google.com/detail/twitter-news-feed-burner/lbingojadaoinncfdhibfodloihablbi
Description Saves you from being distracted by Twitter's news feed.
File Size 41.69 KB
Installation Count 109
Current Version 1.1
Last Updated 2019-09-05
Publish Date 2019-09-04
Rating 5.00/5 Total 2 Ratings
Developer Dmitri Kyle Brereton
Email [email protected]
Payment Type free
Supported Languages 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"
        ]
    }
}