Better Twitter
Hide what's not important on Twitter.com
Better Twitterとは何ですか?
Better TwitterはRazvan Calimanによって開発されたChromeの拡張機能で、その主な機能は「Hide what's not important on Twitter.com」です。
拡張機能のスクリーンショット
Better Twitter拡張機能のCRXファイルをダウンロード
Better Twitter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Bug reports and feature requests go here: https://github.com/oslego/better-twitter/issues Toggle these preferences on the extension's options page: - No fame: Hide number of followers and following count - No vanity: Hide number of tweet likes, retweets and replies - Hide promoted tweets - Hide retweets - Hide tweets liked by others - Hide “Trends for you” - Hide “Who to follow” - Hide website footer
拡張機能の基本情報
名前 | Better Twitter |
ID | illmpnnkeobcgnnjghammeohfjpjoljp |
公式URL | https://chromewebstore.google.com/detail/better-twitter/illmpnnkeobcgnnjghammeohfjpjoljp |
説明 | Hide what's not important on Twitter.com |
ファイルサイズ | 11.05 KB |
インストール数 | 3,699 |
現在のバージョン | 2.1.2 |
最終更新日 | 2023-01-16 |
公開日 | 2020-06-03 |
評価 | 3.65/5 合計 31 レビュー |
開発者 | Razvan Caliman |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/oslego/better-twitter/ |
ヘルプページのURL | https://github.com/oslego/better-twitter/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Twitter", "version": "2.1.2", "description": "Hide what's not important on Twitter.com", "manifest_version": 2, "applications": { "gecko": { "id": "{ef32ca60-1728-4011-a585-4de439fe7ba7}" } }, "options_ui": { "page": "options.html", "open_in_tab": false, "browser_style": true, "chrome_style": true }, "icons": { "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "browser_style": true, "default_popup": "options.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ "options.js", "prefs.js" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/twitter.com\/*", "https:\/\/mobile.twitter.com\/*" ], "css": [ "content.css" ], "js": [ "utils.js", "prefs.js", "content.js" ] } ] } |