Twitter Sanitizer
Improve your Twitter experience by hiding different features.
Twitter Sanitizerとは何ですか?
Twitter SanitizerはHristiyan Dodovによって開発されたChromeの拡張機能で、その主な機能は「Improve your Twitter experience by hiding different features.」です。
拡張機能のスクリーンショット
Twitter Sanitizer拡張機能のCRXファイルをダウンロード
Twitter Sanitizer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to hide different parts of Twitter. The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet. Here's the full list of toggles: - Sidebars - Profile counters - Profile card stats - Post RTs and likes - Feed post actions - Followers you know - Notification faces
拡張機能の基本情報
名前 | Twitter Sanitizer |
ID | amdinnnilgkcpgohiijcejpnhgngmfdl |
公式URL | https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl |
説明 | Improve your Twitter experience by hiding different features. |
ファイルサイズ | 29.21 KB |
インストール数 | 176 |
現在のバージョン | 1.1 |
最終更新日 | 2017-06-26 |
公開日 | 2017-06-25 |
評価 | 4.00/5 合計 3 レビュー |
開発者 | Hristiyan Dodov |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Sanitizer", "version": "1.1", "author": "Hristiyan Dodov", "description": "Improve your Twitter experience by hiding different features.", "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_start", "js": [ "hider.js" ], "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ] } ] } |