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文件

下載Subscene Filter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}