UnMusk Twitter

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

UnMusk Twitter क्या है?

UnMusk Twitter agk4444 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows users to choose what types of tweets appear in their timeline, remove paid Bluecheck and to hide Retweets on a per-user basis"।

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

screenshot
screenshot

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

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

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

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

Forked from 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.


Twitter Timeline & Bluecheck Fixer is an extension that allows you to toggle these random Tweets on and off. 

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

In addition,  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.                    

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

नाम UnMusk Twitter UnMusk Twitter
ID ihbmlaaafangfnkkfegilmbahcfcocbm
आधिकारिक URL https://chromewebstore.google.com/detail/unmusk-twitter/ihbmlaaafangfnkkfegilmbahcfcocbm
विवरण Allows users to choose what types of tweets appear in their timeline, remove paid Bluecheck and to hide Retweets on a per-user basis
फ़ाइल का आकार 2.47 MB
स्थापना संख्या 95
वर्तमान संस्करण 1.1.5
अंतिम अपडेट 2022-11-16
प्रकाशन तिथि 2022-11-14
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर agk4444
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UnMusk Twitter",
    "version": "1.1.5",
    "description": "Allows users to choose what types of tweets appear in their timeline, remove paid Bluecheck and to hide Retweets on a per-user basis",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "arrive.js",
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_title": "UnMusk Twitter",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/ico_16.png",
            "38": "images\/ico_38.png",
            "48": "images\/ico_48.png",
            "128": "images\/ico_128.png"
        }
    },
    "icons": {
        "16": "images\/ico_16.png",
        "38": "images\/ico_38.png",
        "48": "images\/ico_48.png",
        "128": "images\/ico_128.png"
    }
}