Twitter Timeline Fixer

Allows users to choose what types of tweets appear in their timeline and to hide Retweets on a per-user basis.

Twitter Timeline Fixerคืออะไร?

Twitter Timeline Fixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rmitaldev และคุณลักษณะหลักของมันคือ "Allows users to choose what types of tweets appear in their timeline and to hide Retweets on a per-user basis."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Timeline Fixer

ดาวน์โหลดไฟล์ส่วนขยาย Twitter Timeline Fixer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Update 1.1.1: Extension broke when using default BG color due to Twitter update, now fixed.
Github source: https://github.com/FlashTrance/Twitter-Timeline-Fixer

By default, Twitter shows you a variety of Tweets that do not directly pertain to the people you are following. From showing what the users you follow "Like", to popping up with a Tweet letting you know that some random person you've never talked to in your life has just commented on a post of someone you follow, Twitter's timeline can certainly be a messy, frustrating experience at times.

And the worst part is, there's no way to turn these Tweets off... until now, that is...

Twitter Timeline Fixer is an extension that allows you to toggle these random Tweets on and off. You can show/hide 5 types of Tweets: 

1. "Liked" - Tweets that users you follow have liked 
2. "Reply" - Replies by random people on posts of users you follow 
3. "Followed By" - Tweets by people who are followed by users you follow, but who you don't follow personally (confounding, I know)
4. "Follow Topic" - Tweets recommending you to follow a topic, like "Drawing" or "Cycling"
5. "Retweets" - Tweets that users you follow have retweeted

In addition, I've added some granularity to the "Retweets" function. Many people don't want to hide all their retweets, but we know those certain users who just retweet wacky stuff constantly... for these cases, Twitter Timeline Fixer comes with a "Retweet Filter", which allows you to specify the users who's Retweets you want to hide.

NOTE: You must refresh your Twitter page after installing this extension for it to take effect. If that doesn't work, please try restarting your browser.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter Timeline Fixer Twitter Timeline Fixer
ID kjchlcphfkichoajbikmngidnikbgidj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-timeline-fixer/kjchlcphfkichoajbikmngidnikbgidj
คำอธิบาย Allows users to choose what types of tweets appear in their timeline and to hide Retweets on a per-user basis.
ขนาดไฟล์ 1.3 MB
จำนวนการติดตั้ง 416
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2022-10-21
วันที่เผยแพร่ 2020-11-02
คะแนน 4.88/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา rmitaldev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Timeline Fixer",
    "version": "1.1.2",
    "description": "Allows users to choose what types of tweets appear in their timeline and to hide Retweets on a per-user basis.",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "arrive.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/ico_16.png",
            "32": "images\/ico_32.png",
            "48": "images\/ico_48.png",
            "128": "images\/ico_128.png"
        }
    },
    "icons": {
        "16": "images\/ico_16.png",
        "32": "images\/ico_32.png",
        "48": "images\/ico_48.png",
        "128": "images\/ico_128.png"
    }
}