Netflix Multi-Subtitles
Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously.
什麼是Netflix Multi-Subtitles?
Netflix Multi-Subtitles是由josef.rukavicka開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously.”。
擴展截圖
下載Netflix Multi-Subtitles擴展crx文件
下載Netflix Multi-Subtitles擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
"Netflix Multi Subtitles" is a Chrome extension that allows you to watch videos on Netflix with several sets of subtitles simultaneously; the number of simultaneous sets is not limited. It is a great facility especially for language learners. See https://www.youtube.com/watch?v=zpJNe0zE2uQ There are following features: All subtitles are loaded from Netflix, you don't need to upload your own files. You have to select the subtitles in the Netflix menu in order to load these subtitles into the extension "Netflix Multi Subtitles" You select one after another all the languages that you want to watch simultaneously. Once loaded in "Netflix Multi Subtitles" you can: - manage the font size and color - you can switch off/on the text stroke to facilitate the readability of the subtitles in case the color of the background is similar to the color of the subtitles - change the position by simple drag and drop (in a comfortable manner you determine the layout of all subtitles on the screen) - hide/show every single set of subtitles - export all the subtitles (with begin and end positions in time) into a text window (so that you can easily copy and paste the texts into a dictionary) - fast rewind on pressing the up-arrow key (the playing speed is 5 times more than normal speed) - normal playing speed on pressing the down-arrow key - show stopwatch: it displays the remaining time to the time when another subtitles appear, by default turned off. It is targeted especially to those who want to learn language without having to watch the longer parts of the movie without speaking. In case of a longer time, the user can press the up-arrow key to activate fast rewind to the next subtitle. The fast rewind changes to the normal playing speed if next subtitles are about to appear in less than 2 seconds. The stopwatch works with loaded subtitles in the chrome extension "Netflix Multi Subtitles", not with the subtitles displayed by Netflix. Some languages cannot be loaded into "Netflix Multi Subtitles", because they are not transferred in a text format (for example Russian, Japanese, Chinese, ..). It means that you cannot manage these subtitles by the extension "Netflix Multi Subtitles", however it is still possible to turn on/off them in the Netflix menu. Hence you watch simultaneously one of those "non text" subtitles with any number of other "text" subtitles (English, French, German, Italian, ...) ====================================================================== New Features in version 0.0.0.9: - adding static text: Use F11 for full-screen view. - removing an advertisement link ====================================================================== New Features in version 0.0.0.8: - removing bug from manifest.json ====================================================================== New Features in version 0.0.0.7: - adding text stroke to facilitate the readability of the subtitles in case the color of the background is similar to the color of the subtitles - adding an optional advertisement to the bottom of the menu ====================================================================== New Features in version 0.0.0.6: - bug fix in the format of the displayed numbers ====================================================================== New Features in version 0.0.0.5: - handling expired trial periods - format of the displayed numbers ====================================================================== New Features in version 0.0.0.4: - technical bug fix with processing response from googleapis ====================================================================== New Features in version 0.0.0.3: - fast rewind on pressing the up-arrow key - normal playing speed on pressing the down-arrow key - if "Show watchstop" is checked, then fast rewind changes automatically to normal playing speed if next subtitles are about to appear in less than 2 seconds - added check for expired trial license ====================================================================== New Features in version 0.0.0.2: - possibility to define color of subtitles - added the option extra small font size (12 px) - show stopwatch option, see above for more details Bug fix: - correct displaying of subtitles for multiple records with the same display time A technical change: - manifest permissions were restricted to netflix.com and nflxvideo.net
擴展基本資訊
名稱 | Netflix Multi-Subtitles |
ID | nbefemlknofkcmjaacjbfebcodllpncj |
官方網址 | https://chromewebstore.google.com/detail/netflix-multi-subtitles/nbefemlknofkcmjaacjbfebcodllpncj |
簡介 | Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously. |
檔案大小 | 118 KB |
安裝次數 | 4,926 |
目前版本 | 0.0.0.9 |
更新時間 | 2020-10-03 |
上架時間 | 2019-06-11 |
評分 | 3.46/5 共 68 次評分 |
開發者 | josef.rukavicka |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Multi-Subtitles", "version": "0.0.0.9", "description": "Chrome extension for netflix allowing to turn on several sets of subtitles simultaneously.", "manifest_version": 2, "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png" }, "permissions": [ "identity", "https:\/\/*.netflix.com\/*", "https:\/\/*.nflxvideo.net\/*", "webRequest", "webRequestBlocking", "https:\/\/www.googleapis.com\/" ], "background": { "scripts": [ "bgp_m.js" ], "persistent": true }, "content_scripts": [ { "all_frames": false, "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "jquery.min.js", "jquery-ui.min.js", "inject_m.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "web_accessible_resources": [ "inject.css", "shadow.css" ], "oauth2": { "client_id": "561793132704-h1m6tavr37b0jd1sbtbg6sghuldsejuh.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/plus.login", "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly" ] } } |