Netflix CC Remover

Removes Closed Captionining(HI) parts for Netflix subtitles.

Netflix CC Removerคืออะไร?

Netflix CC Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sight และคุณลักษณะหลักของมันคือ "Removes Closed Captionining(HI) parts for Netflix subtitles."

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

screenshot

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

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

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

                        Tiny extension that removes forced closed captions from Netflix's Subtitles.


Removes Closed Captions, Hearing Impaired (HI) Subtitles, such as: [MUSIC PLAYING],  (ENGINE REVVING), ♪ I'm singing in the rain ♪.

Comes with button to show closed captions, it appears at the rightmost corner of the omni-box, clicking it toggles CC On/Off.

-----------CHANGELOG---------------
 + Now works with multiple CC lines
 + Options
 + Also blocks Music Parts ( off by default)
 + Persistent options across devices
-----------------------------------

I can't provide you with a screenshot of this working as the image would be copyrighted, as would the subtitle itself I'd imagine.


This small extension came out of my own need for something like it, I enjoy watching TV Shows and Movies with subtitles, and Netflix has English subs for most of their catalogue, unfortunately most of it is Closed Captioned, I got annoyed by it so I worked out a RegEx expression to get rid of the CC part.

---------------------------------------------------------
This extension is not in any way affiliated with Netflix.                    

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

ชื่อ Netflix CC Remover Netflix CC Remover
ID nfljmjligibcncfjdnhnhiafobdfddnj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-cc-remover/nfljmjligibcncfjdnhnhiafobdfddnj
คำอธิบาย Removes Closed Captionining(HI) parts for Netflix subtitles.
ขนาดไฟล์ 13.95 KB
จำนวนการติดตั้ง 439
เวอร์ชันปัจจุบัน 0.3.1
อัปเดตครั้งล่าสุด 2015-12-09
วันที่เผยแพร่ 2015-12-09
คะแนน 4.41/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา Sight
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix CC Remover",
    "version": "0.3.1",
    "description": "Removes Closed Captionining(HI) parts for Netflix subtitles.",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/watch\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": "icon19Grey.png"
    },
    "permissions": [
        "webNavigation",
        "storage",
        "declarativeContent",
        "*:\/\/*.netflix.com\/watch\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}