Hide Retweets
Remove retweets by specific users or everyone on Twitter
Hide Retweetsとは何ですか?
Hide RetweetsはKevin Leutzingerによって開発されたChromeの拡張機能で、その主な機能は「Remove retweets by specific users or everyone on Twitter」です。
拡張機能のスクリーンショット
Hide Retweets拡張機能のCRXファイルをダウンロード
Hide Retweets拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Got a friend who retweets too much? Hide/Block/Remove retweets from a specific list of users, or hide everyone's retweets. Retweets are collapsed and can be viewed if clicked. Source: https://github.com/kleutzinger/Hide-Retweets-Extension
拡張機能の基本情報
名前 | |
ID | iehhaigbokpilpilegajanpckfgbegdm |
公式URL | https://chrome.google.com/webstore/detail/hide-retweets/iehhaigbokpilpilegajanpckfgbegdm |
説明 | Remove retweets by specific users or everyone on Twitter |
ファイルサイズ | 334 KB |
インストール数 | 89 |
現在のバージョン | 0.2 |
最終更新日 | 2018-02-07 |
公開日 | 2018-02-07 |
評価 | 2.09/5 合計 11 レビュー |
開発者 | Kevin Leutzinger |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide Retweets", "description": "Remove retweets by specific users or everyone on Twitter", "version": "0.2", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "32": "img\/icon16.png", "48": "img\/icon48.png", "64": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "js\/underscore-1.5.2.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/underscore-1.5.2.min.js", "js\/content.js" ], "run_at": "document_end" } ] } |