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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
}