Netflix CC Remover

Removes Closed Captionining(HI) parts for Netflix subtitles.

Netflix CC Remover란 무엇입니까?

Netflix CC Remover은(는) Sight에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Removes Closed Captionining(HI) parts for Netflix subtitles."입니다.

확장 프로그램 스크린샷

screenshot

Netflix CC Remover 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
}