Better Twitter

Hide what's not important on Twitter.com

Better Twitter क्या है?

Better Twitter Razvan Caliman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide what's not important on Twitter.com"।

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

screenshot
screenshot

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

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

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

                        Bug reports and feature requests go here:
https://github.com/oslego/better-twitter/issues

Toggle these preferences on the extension's options page:

- No fame: Hide number of followers and following count
- No vanity: Hide number of tweet likes, retweets and replies
- Hide promoted tweets
- Hide retweets
- Hide tweets liked by others
- Hide “Trends for you”
- Hide “Who to follow”
- Hide website footer                    

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

नाम Better Twitter Better Twitter
ID illmpnnkeobcgnnjghammeohfjpjoljp
आधिकारिक URL https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp
विवरण Hide what's not important on Twitter.com
फ़ाइल का आकार 11.05 KB
स्थापना संख्या 3,699
वर्तमान संस्करण 2.1.2
अंतिम अपडेट 2023-01-16
प्रकाशन तिथि 2020-06-03
रेटिंग 3.65/5 कुल 31 रेटिंग्स
डेवलपर Razvan Caliman
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/oslego/better-twitter/
सहायता पृष्ठ URL https://github.com/oslego/better-twitter/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Twitter",
    "version": "2.1.2",
    "description": "Hide what's not important on Twitter.com",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "{ef32ca60-1728-4011-a585-4de439fe7ba7}"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false,
        "browser_style": true,
        "chrome_style": true
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_popup": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "options.js",
        "prefs.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "utils.js",
                "prefs.js",
                "content.js"
            ]
        }
    ]
}