Twitter News Feed Burner

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

ما هو Twitter News Feed Burner؟

Twitter News Feed Burner هو إضافة Chrome تم تطويرها بواسطة Dmitri Kyle Brereton، والميزة الرئيسية لها هي "Saves you from being distracted by Twitter's news feed.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Twitter News Feed Burner

قم بتنزيل ملفات الامتداد Twitter News Feed Burner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        ]
    }
}