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"입니다.

확장 프로그램 스크린샷

screenshot

TwitCasting Comment Cleaner 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ツイキャスの自分のコメントを一括削除できます。
・ログイン状態で、視聴ページ上で動作します。
・放送主用ページでの動作は今後対応予定です。

ver 1.0.0: 2016/12/13
初期リリース                    

확장 프로그램 기본 정보

이름 TwitCasting Comment Cleaner 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
이메일 [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"
    }
}