Netflix subs

Adaptive subs for Netflix

Vad är Netflix subs?

Netflix subs är en Chrome-tillägg utvecklad av artem.ibragimov, och dess huvudfunktion är "Adaptive subs for Netflix".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Netflix subs-förlängningens CRX-fil

Ladda ner Netflix subs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Netflix subs Netflix subs
ID cgoeljahmnmgbcdfikkpemhoooipffgk
Officiell webbadress https://chromewebstore.google.com/detail/netflix-subs/cgoeljahmnmgbcdfikkpemhoooipffgk
Beskrivning Adaptive subs for Netflix
Filstorlek 21.51 KB
Antal Installationer 53
Aktuell Version 0.0.4
Senast Uppdaterad 2023-02-14
Publiceringsdatum 2021-05-03
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare artem.ibragimov
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}