Subfilter for Netflix

Watch your favourite series on Netflix with filtered subtitles and improve foreign language at the same time.

Subfilter for Netflixคืออะไร?

Subfilter for Netflix เป็นส่วนขยายของ Chrome ที่พัฒนาโดย martin.hassman และคุณลักษณะหลักของมันคือ "Watch your favourite series on Netflix with filtered subtitles and improve foreign language at the same time."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Subfilter for Netflix

ดาวน์โหลดไฟล์ส่วนขยาย Subfilter for Netflix ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        With Subfilter you can improve your listening skills. Support for more than 20 languages available on Netflix. If you watch series/movies with Subfilter every day you can feel results in 1-2 weeks.

Changes in version 0.5.2
Fixed
- Fix for recent changes in Netflix UI.
- Migrated to Manifest v3

Changes in version 0.5.1
Fixed
- Fix for recent changes in Netflix UI.

Changes in version 0.5.0
Added:
- Pressing Ctrl key or mouseover subtitles, will reveal hidden words
- Introducing different modes of watching
  - Normal - default, typical comfortable watching
  - Pause (before) - Before every subtitle is video paused. Press 'Space' to continue watching. 
  - Pause and reveal (after) - After every subtitle is video paused and hidden text is revealed. Press 'B' to repeat last subtitle. Press 'Space' to continue watching.
  - Pause, reveal, continue - After every subtitle is video paused, hidden text is revealed and video continue automatically.
  - Dialogs only - Watch only dialogs, skip else.
Removed:
- Download SRT button

Changes in version 0.4.0
- Added filter for Chinese and Japanese
- Added HARDCORE filter (for HARDCORE learners, or just for fun)
- Added general reverse filter (still not sure about this one, but can be useful)
- Added some useful commands accessible from JS console, e.g. subfilter.cmds.dump(), subfilter.cmds.words(), subfilter.cmds.grep(/word/i) - there might be UI in some later version)
- Added tooltip when you hover subtitle contains unfiltered text
- Improved recognition of punctuation (eg. handle correctly question mark in Arabic)
- UI hiding delayed

This extension is based on Subadub extension project of Russel Simmons.

Wiki with instructions: https://github.com/met/subfilter/wiki
Source code: https://github.com/met/subfilter
License: MIT                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Subfilter for Netflix Subfilter for Netflix
ID knglefkdmonaaodmfkipllpnjhoaelmn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/subfilter-for-netflix/knglefkdmonaaodmfkipllpnjhoaelmn
คำอธิบาย Watch your favourite series on Netflix with filtered subtitles and improve foreign language at the same time.
ขนาดไฟล์ 37.06 KB
จำนวนการติดตั้ง 263
เวอร์ชันปัจจุบัน 0.5.2
อัปเดตครั้งล่าสุด 2023-08-01
วันที่เผยแพร่ 2021-01-05
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา martin.hassman
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/met/subfilter/wiki
URL หน้าช่วยเหลือ https://github.com/met/subfilter/discussions/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Subfilter for Netflix",
    "description": "Watch your favourite series on Netflix with filtered subtitles and improve foreign language at the same time.",
    "version": "0.5.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "resources": [
                "content.js",
                "filters.js",
                "custom_filters.js",
                "subfilter-ui.js",
                "style.css"
            ]
        }
    ]
}