Subscene Filter

The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.

Subscene Filter란 무엇입니까?

Subscene Filter은(는) Dan Dao에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Subscene Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Subscene Filter extension enhances the user experience on the Subscene website by allowing users to choose their preferred language for subtitles and hide neutral subtitles.

Users can select their preferred language from a drop-down list, and the extension will automatically display subtitles in that language. Additionally, users can hide subtitles that are not translated or are in the same language as the audio.

The Subscene Filter extension is a helpful tool for anyone who frequently uses the Subscene website to download and upload subtitles, as it allows users to customize their subtitles and filter out unwanted ones.                    

확장 프로그램 기본 정보

이름 Subscene Filter Subscene Filter
ID nklnmofaobhhdhbelhkkdohgjeekambg
공식 URL https://chromewebstore.google.com/detail/subscene-filter/nklnmofaobhhdhbelhkkdohgjeekambg
설명 The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.
파일 크기 376 KB
설치 횟수 83
현재 버전 1.0.2
최근 업데이트 2023-02-22
출시 날짜 2023-02-22
평점 5.00/5 총 1 개의 평점
개발자 Dan Dao
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Subscene Filter",
    "description": "The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.",
    "version": "1.0.2",
    "background": {
        "service_worker": "\/background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icon\/icon-32.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon\/icon-16.png",
        "32": "icon\/icon-32.png",
        "48": "icon\/icon-48.png",
        "128": "icon\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/subscene.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "css\/site.css"
            ],
            "js": [
                "\/content.js"
            ]
        }
    ]
}