Netflix International
Displays all available Netflix audio and subtitle tracks.
Netflix International là gì?
Netflix International là một tiện ích mở rộng Chrome được phát triển bởi shirt, và tính năng chính của nó là "Displays all available Netflix audio and subtitle tracks.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Netflix International
Tải xuống các tệp mở rộng Netflix International dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension allows users to listen to audio tracks on Netflix that are not normally displayed. Not an official Netflix product.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Netflix International |
ID | pbbaoiomplacehgkfnlejmibhmbebaal |
URL Chính Thức | https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal |
Mô tả | Displays all available Netflix audio and subtitle tracks. |
Kích Thước Tệp | 16.43 KB |
Số Lần Cài Đặt | 774 |
Phiên Bản Hiện Tại | 2.0.21 |
Cập Nhật Lần Cuối | 2023-11-05 |
Ngày Phát Hành | 2021-03-29 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | shirt |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |