FlixSubs - Subtitles Plugin For Netflix
Simple plugin that adds subtitles to movies and series you watch.
FlixSubs - Subtitles Plugin For Netflixとは何ですか?
FlixSubs - Subtitles Plugin For Netflixはflixsubsによって開発されたChromeの拡張機能で、その主な機能は「Simple plugin that adds subtitles to movies and series you watch.」です。
拡張機能のスクリーンショット
FlixSubs - Subtitles Plugin For Netflix拡張機能のCRXファイルをダウンロード
FlixSubs - Subtitles Plugin For Netflix拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Flixsubs extension simply detects what is watched on Netflix's and adds your preferable language subtitles. 拡張機能の基本情報
| 名前 | |
| ID | llcjbplmeedpplcgabakfhdikbgmajna |
| 公式URL | https://chromewebstore.google.com/detail/flixsubs-subtitles-plugin/llcjbplmeedpplcgabakfhdikbgmajna |
| 説明 | Simple plugin that adds subtitles to movies and series you watch. |
| ファイルサイズ | 107 KB |
| インストール数 | 610 |
| 現在のバージョン | 2.2 |
| 最終更新日 | 2016-05-07 |
| 公開日 | 2016-05-07 |
| 評価 | 1.83/5 合計 12 レビュー |
| 開発者 | flixsubs |
| 支払い方法 | free |
| 拡張機能のウェブサイト | http://flixsubs.com/ |
| ヘルプページのURL | https://flixsub.groovehq.com/help_center |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "FlixSubs - Subtitles Plugin For Netflix",
"description": "Simple plugin that adds subtitles to movies and series you watch.",
"version": "2.2",
"browser_action": {
"default_icon": "movies.png"
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "movies.png"
},
"permissions": [
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.netflix.com\/watch\/*"
],
"js": [
"scripts.js",
"p.js"
],
"css": [
"styles.css"
]
}
]
} | |