Subscene Filter

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

Subscene Filterคืออะไร?

Subscene Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dan Dao และคุณลักษณะหลักของมันคือ "The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Subscene Filter

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}