TwitCasting Comment Cleaner
A plugin for deleting comments at TwitCasting
TwitCasting Comment Cleanerとは何ですか?
TwitCasting Comment CleanerはKikyou Akinoによって開発されたChromeの拡張機能で、その主な機能は「A plugin for deleting comments at TwitCasting」です。
拡張機能のスクリーンショット
TwitCasting Comment Cleaner拡張機能のCRXファイルをダウンロード
TwitCasting Comment Cleaner拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
ツイキャスの自分のコメントを一括削除できます。 ・ログイン状態で、視聴ページ上で動作します。 ・放送主用ページでの動作は今後対応予定です。 ver 1.0.0: 2016/12/13 初期リリース
拡張機能の基本情報
名前 | TwitCasting Comment Cleaner |
ID | eeadjmebmbkfnhablhiedepfkkelcdef |
公式URL | https://chromewebstore.google.com/detail/twitcasting-comment-clean/eeadjmebmbkfnhablhiedepfkkelcdef |
説明 | A plugin for deleting comments at TwitCasting |
ファイルサイズ | 58.04 KB |
インストール数 | 388 |
現在のバージョン | 1.1.0 |
最終更新日 | 2024-03-05 |
公開日 | 2019-07-26 |
評価 | 3.67/5 合計 3 レビュー |
開発者 | Kikyou Akino |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/bellflower2015/chrome-extension-twitcasting-comment-cleaner |
対応言語 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "ja", "name": "__MSG_extName__", "version": "1.1.0", "description": "__MSG_extDescription__", "author": "Kikyou Akino", "homepage_url": "http:\/\/bellflower.web4u.jp\/", "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "*:\/\/*.twitcasting.tv\/*", "*:\/\/twitcasting.tv\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitcasting.tv\/*", "*:\/\/twitcasting.tv\/*" ], "js": [ "jquery-3.7.1.slim.min.js", "script.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" } } |