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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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
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
}