Twitter usability suite

Tools for making Twitter usable

ما هو Twitter usability suite؟

Twitter usability suite هو إضافة Chrome تم تطويرها بواسطة n8chz، والميزة الرئيسية لها هي "Tools for making Twitter usable".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Twitter usability suite

قم بتنزيل ملفات الامتداد Twitter usability suite بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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
}