FlixSubs - Subtitles Plugin For Netflix
Simple plugin that adds subtitles to movies and series you watch.
Hvad er FlixSubs - Subtitles Plugin For Netflix?
FlixSubs - Subtitles Plugin For Netflix er en Chrome-udvidelse udviklet af flixsubs, og dens hovedfunktion er "Simple plugin that adds subtitles to movies and series you watch.".
Udvidelsesskærmbilleder
Download FlixSubs - Subtitles Plugin For Netflix-udvidelses-CRX-fil
Download FlixSubs - Subtitles Plugin For Netflix-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
                        Flixsubs extension simply detects what is watched on Netflix's and adds your preferable language subtitles.                     Grundlæggende oplysninger om udvidelsen
| Navn |  | 
| ID | llcjbplmeedpplcgabakfhdikbgmajna | 
| Officiel URL | https://chromewebstore.google.com/detail/flixsubs-subtitles-plugin/llcjbplmeedpplcgabakfhdikbgmajna | 
| Beskrivelse | Simple plugin that adds subtitles to movies and series you watch. | 
| Filstørrelse | 107 KB | 
| Antal Installationer | 610 | 
| Nuværende Version | 2.2 | 
| Senest Opdateret | 2016-05-07 | 
| Udgivelsesdato | 2016-05-07 | 
| Bedømmelse | 1.83/5 Samlet 12 Bedømmelser | 
| Udvikler | flixsubs | 
| Betalingsmetode | free | 
| Udvidelseswebsted | http://flixsubs.com/ | 
| Hjælpeside-URL | https://flixsub.groovehq.com/help_center | 
| Understøttede Sprog | 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"
            ]
        }
    ]
} | |