Netflix subs
Adaptive subs for Netflix
Netflix subs क्या है?
Netflix subs artem.ibragimov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adaptive subs for Netflix"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Netflix subs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Do you watch films in a foreign language? If you don't know the language perfectly, you probably use captions, but subtitles are not necessary all the time, because you need them for new words only. I have created a Chrome browser extension for the Netflix site, it displays captions after short video rewind. Choose primary subtitles - captions in a foreign language, then choose secondary ones - captions in your native language, after that turn off all captions and focus on listening. When you face an unknown phrase, press - the CTRL key (Windows) - the Command ⌘ key (MacOS) and a movie will be rewound in 10 seconds. Now, you can see primary subtitles and if you don't know some words, press CTRL again, and you will see dual captions. After that difficult video's fragment subtitles will disappear. That's all. Hope it will be helpful for you!
एक्सटेंशन की मूल जानकारी
नाम | Netflix subs |
ID | cgoeljahmnmgbcdfikkpemhoooipffgk |
आधिकारिक URL | https://chromewebstore.google.com/detail/netflix-subs/cgoeljahmnmgbcdfikkpemhoooipffgk |
विवरण | Adaptive subs for Netflix |
फ़ाइल का आकार | 21.51 KB |
स्थापना संख्या | 53 |
वर्तमान संस्करण | 0.0.4 |
अंतिम अपडेट | 2023-02-14 |
प्रकाशन तिथि | 2021-05-03 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | artem.ibragimov |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "author": "artem.ibragimov", "name": "Netflix subs", "description": "Adaptive subs for Netflix", "version": "0.0.4", "permissions": [ "webRequest" ], "host_permissions": [ "https:\/\/www.netflix.com\/", "https:\/\/*.oca.nflxvideo.net\/" ], "icons": { "16": ".\/asset\/i16.png", "32": ".\/asset\/i32.png", "48": ".\/asset\/i48.png", "128": ".\/asset\/i128.png", "225": ".\/asset\/i225.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "all_frames": true, "js": [ "main.js" ] } ] } |