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ファイルをダウンロード
Netflix International拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows users to listen to audio tracks on Netflix that are not normally displayed.
Not an official Netflix product. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
} | |