YouTube Spam Remover

Hides most YouTube spam comments

YouTube Spam Remover란 무엇입니까?

YouTube Spam Remover은(는) Luke Pflibsen-Jones에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides most YouTube spam comments"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

YouTube Spam Remover 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Detects spam comments and automatically hides them, protecting its users from spoofers, adult content pushers, and other annoyances.

If the add-on hides a comment you want to see, simply click the "Likely spam (+)" text and it will reveal the hidden comment (with the profile picture blurred just in case). Displaying the reason the comment was marked as spam can be disabled/enabled via the "spam reason labels" in the options menu.                    

확장 프로그램 기본 정보

이름 YouTube Spam Remover YouTube Spam Remover
ID gmlbmlpbijkhcdhfaaimaehgjfjccffd
공식 URL https://chromewebstore.google.com/detail/youtube-spam-remover/gmlbmlpbijkhcdhfaaimaehgjfjccffd
설명 Hides most YouTube spam comments
파일 크기 938 KB
설치 횟수 1,206
현재 버전 2.1.0
최근 업데이트 2023-12-07
출시 날짜 2022-02-03
평점 2.57/5 총 7 개의 평점
개발자 Luke Pflibsen-Jones
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lukepfjo/YouTube-Spam-Remover
도움말 페이지 URL https://github.com/luketimothyjones/youtube-spam-remover/issues/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Spam Remover",
    "version": "2.1.0",
    "description": "Hides most YouTube spam comments",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "host_permissions": [
        "https:\/\/yt3.ggpht.com\/*",
        "https:\/\/raw.githubusercontent.com\/lukepfjo\/YouTube-Spam-Remover\/main\/src\/extern\/opennsfwjs\/model\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*",
                "https:\/\/youtube.com\/watch*"
            ],
            "js": [
                "yt-spam-remover.js",
                "opennsfw.min.js",
                "pixelmatch.min.js"
            ],
            "css": [
                "yt-spam-remover.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "yt-spam-remover-worker.js",
                "opennsfw.min.js",
                "pixelmatch.min.js",
                "allowed-sites.json.gz"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_popup": "gui\/ytsr-gui-tab.html"
    },
    "options_ui": {
        "page": "gui\/ytsr-gui-options.html",
        "browser_style": true
    },
    "background": {
        "service_worker": "yt-spam-remover-background.js"
    }
}