Twitter usability suite
Tools for making Twitter usable
Twitter usability suiteとは何ですか?
Twitter usability suiteはn8chzによって開発されたChromeの拡張機能で、その主な機能は「Tools for making Twitter usable」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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 } |