Twitter Bot Hider
Hides twitter bots from your timeline.
Twitter Bot Hiderとは何ですか?
Twitter Bot HiderはEbuによって開発されたChromeの拡張機能で、その主な機能は「Hides twitter bots from your timeline.」です。
拡張機能のスクリーンショット
Twitter Bot Hider拡張機能のCRXファイルをダウンロード
Twitter Bot Hider拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Twitter Bot Hider Chrome Extension helps to hide spam/bot tweets under tweets' replies.
The source code can be found here: https://github.com/EbuOgden/TwitterBotHider 拡張機能の基本情報
| 名前 | |
| ID | efpmoenhggjbiaeomapapohigijbobgb |
| 公式URL | https://chromewebstore.google.com/detail/twitter-bot-hider/efpmoenhggjbiaeomapapohigijbobgb |
| 説明 | Hides twitter bots from your timeline. |
| ファイルサイズ | 40.87 KB |
| インストール数 | 33 |
| 現在のバージョン | 0.1.1 |
| 最終更新日 | 2022-10-31 |
| 公開日 | 2022-10-31 |
| 評価 | 5.00/5 合計 3 レビュー |
| 開発者 | Ebu |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitter Bot Hider",
"version": "0.1.1",
"description": "Hides twitter bots from your timeline.",
"permissions": [
"tabs"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.twitter.com\/*"
],
"js": [
"contentScript.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"https:\/\/*.githubusercontent.com\/*"
],
"matches": [
"https:\/\/*.twitter.com\/*"
]
}
],
"action": {
"default_icon": {
"16": "assets\/ext-icon.png",
"24": "assets\/ext-icon.png",
"32": "assets\/ext-icon.png"
},
"default_title": "Twitter Bot Hider",
"default_popup": "popup.html"
},
"manifest_version": 3
} | |