Twitter usability suite

Tools for making Twitter usable

什麼是Twitter usability suite?

Twitter usability suite是由n8chz開發的Chrome擴展程式,該擴展的主要功能是“Tools for making Twitter usable”。

擴展截圖

screenshot

下載Twitter usability suite擴展crx文件

下載Twitter usability suite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
}