Better Twitter

Make Twitter great again by removing unwanted contents from your timeline.

Better Twitter क्या है?

Better Twitter :Dream द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make Twitter great again by removing unwanted contents from your timeline."।

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

screenshot

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

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

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

                        The current settings allow you to hide the following elements:
- view counts
- tweet analytics
- share buttons
- ads & promoted tweets
- promoted account (who to follow section only)
- 'You might like' tweets

Please note that in case of any new UI changes on Twitter, it may take 1-3 days for our extension to update.

Feels free to leave feedback and suggestions, as I will be continue improving the extension and add more features later on.

Changelog:
v.10.3 (18/01/2023)
- Added new option to hide 'You might like' tweets

v1.0.2 (15/01/2023)
- Updated to correspond to new UI changes
- Added a new option to hide tweet analytics                    

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

नाम Better Twitter Better Twitter
ID pdpffnhppidmpbfpflnclfkfgcgimblo
आधिकारिक URL https://chromewebstore.google.com/detail/better-twitter/pdpffnhppidmpbfpflnclfkfgcgimblo
विवरण Make Twitter great again by removing unwanted contents from your timeline.
फ़ाइल का आकार 30.66 KB
स्थापना संख्या 41
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2023-01-19
प्रकाशन तिथि 2022-12-26
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर :Dream
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Better Twitter",
    "version": "1.0.3",
    "description": "Make Twitter great again by removing unwanted contents from your timeline.",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_title": "Better Twitter",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    }
}