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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        ]
    }
}