Netflix International
Displays all available Netflix audio and subtitle tracks.
Netflix International란 무엇입니까?
Netflix International은(는) shirt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays all available Netflix audio and subtitle tracks."입니다.
확장 프로그램 스크린샷
Netflix International 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows users to listen to audio tracks on Netflix that are not normally displayed. Not an official Netflix product.
확장 프로그램 기본 정보
이름 | Netflix International |
ID | pbbaoiomplacehgkfnlejmibhmbebaal |
공식 URL | https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal |
설명 | Displays all available Netflix audio and subtitle tracks. |
파일 크기 | 16.43 KB |
설치 횟수 | 774 |
현재 버전 | 2.0.21 |
최근 업데이트 | 2023-11-05 |
출시 날짜 | 2021-03-29 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | shirt |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix International", "description": "Displays all available Netflix audio and subtitle tracks.", "version": "2.0.21", "author": "shirt", "browser_action": { "default_icon": "img\/icon128.png", "default_popup": "pages\/options.html" }, "browser_specific_settings": { "gecko": { "id": "netflix-international@shirt" } }, "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/assets.nflxext.com\/*\/ffe\/player\/html\/*", "*:\/\/www.assets.nflxext.com\/*\/ffe\/player\/html\/*", "*:\/\/netflix.com\/*", "*:\/\/www.netflix.com\/*" ], "all_frames": true, "css": [ "netflix.css" ], "js": [ "content_script.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "pages\/options.html", "open_in_tab": true }, "web_accessible_resources": [ "cadmium-playercore-shim.js", "netflix_max_bitrate.js", "netflix.css" ], "permissions": [ "storage", "webRequest", "webRequestBlocking", "*:\/\/assets.nflxext.com\/*\/ffe\/player\/html\/*", "*:\/\/www.assets.nflxext.com\/*\/ffe\/player\/html\/*", "*:\/\/netflix.com\/*", "*:\/\/www.netflix.com\/*" ] } |