FlixSubs - Subtitles Plugin For Netflix
Simple plugin that adds subtitles to movies and series you watch.
Wat is FlixSubs - Subtitles Plugin For Netflix?
FlixSubs - Subtitles Plugin For Netflix is een Chrome-extensie ontwikkeld door flixsubs, en de belangrijkste functie is "Simple plugin that adds subtitles to movies and series you watch.".
Extensie Screenshots
Download het CRX-bestand van de extensie FlixSubs - Subtitles Plugin For Netflix
Download FlixSubs - Subtitles Plugin For Netflix-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Flixsubs extension simply detects what is watched on Netflix's and adds your preferable language subtitles. Basisinformatie over de Extensie
| Naam | |
| ID | llcjbplmeedpplcgabakfhdikbgmajna |
| Officiële URL | https://chromewebstore.google.com/detail/flixsubs-subtitles-plugin/llcjbplmeedpplcgabakfhdikbgmajna |
| Beschrijving | Simple plugin that adds subtitles to movies and series you watch. |
| Bestandsgrootte | 107 KB |
| Aantal Installaties | 610 |
| Huidige Versie | 2.2 |
| Laatst Bijgewerkt | 2016-05-07 |
| Publicatiedatum | 2016-05-07 |
| Beoordeling | 1.83/5 Totaal 12 Beoordelingen |
| Ontwikkelaar | flixsubs |
| Betalingswijze | free |
| Extensiewebsite | http://flixsubs.com/ |
| Help Pagina-URL | https://flixsub.groovehq.com/help_center |
| Ondersteunde Talen | 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"
]
}
]
} | |