Twitter usability suite

Tools for making Twitter usable

Twitter usability suite क्या है?

Twitter usability suite n8chz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tools for making Twitter usable"।

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

screenshot

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

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

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

                        This is a WebExtension (browser extension) which provides the following features:

* Option of fading to 20% opacity promoted tweets, promoted accounts and (I think, still) promoted trends

* Option of making links within Twitter to Twitter accounts link to the "with_replies" version of the account profile instead of the default one which doesn't include replies.

* Option of making hashtag links link to the "latest" version of the hashtag query instead of the default which is "top" tweets.

* Creates a second search widget for doing searches, also to be displayed "latest" rather than "top".

* On pages for lists owned by the currently logged in user, add an option to add to the list authors of tweets retweeted by current list members. This feature works on Chrome but not Firefox. TODO: not display this tool when the original author is already on the list.

* Replaces auto-play videos with a link (that opens in a new tab) to the video file itself.  Now works also for the ultra-annoying "Periscope" videos.                    

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

नाम Twitter usability suite Twitter usability suite
ID hhockakmlacjbpmkahbefapdechlogbd
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-usability-suite/hhockakmlacjbpmkahbefapdechlogbd
विवरण Tools for making Twitter usable
फ़ाइल का आकार 50.63 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.0.5
अंतिम अपडेट 2018-02-10
प्रकाशन तिथि 2018-02-10
डेवलपर n8chz
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/n8chz/twitter-usability
सहायता पृष्ठ URL https://github.com/n8chz/twitter-usability/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter usability suite",
    "version": "1.0.5",
    "description": "Tools for making Twitter usable",
    "homepage_url": "https:\/\/astoundingteam.com\/",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "*:\/\/*.twitter.com\/*",
        "webRequest",
        "*:\/\/*.twitter.com\/i\/videos\/tweet\/*"
    ],
    "icons": {
        "128": "tw128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*\/lists\/*"
            ],
            "js": [
                "jquery.js",
                "list.js"
            ]
        }
    ],
    "options_ui": {
        "page": "settings\/options.html"
    },
    "manifest_version": 2
}