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
初期リリース                     扩展基本信息
| 名称 |   |  
| 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 | 
| 电子邮箱 | [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"
    }
}  |  |