Twitter News Feed Burner

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

Twitter News Feed Burner क्या है?

Twitter News Feed Burner Dmitri Kyle Brereton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Saves you from being distracted by Twitter's news feed."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter News Feed Burner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Twitter News Feed Burner Twitter News Feed Burner
ID lbingojadaoinncfdhibfodloihablbi
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-news-feed-burner/lbingojadaoinncfdhibfodloihablbi
विवरण Saves you from being distracted by Twitter's news feed.
फ़ाइल का आकार 41.69 KB
स्थापना संख्या 109
वर्तमान संस्करण 1.1
अंतिम अपडेट 2019-09-05
प्रकाशन तिथि 2019-09-04
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Dmitri Kyle Brereton
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
        ]
    }
}