FlixSubs - Subtitles Plugin For Netflix
Simple plugin that adds subtitles to movies and series you watch.
Was ist FlixSubs - Subtitles Plugin For Netflix?
FlixSubs - Subtitles Plugin For Netflix ist eine Chrome-Erweiterung, die von flixsubs entwickelt wurde, und ihr Hauptmerkmal ist "Simple plugin that adds subtitles to movies and series you watch.".
Erweiterungsscreenshots
FlixSubs - Subtitles Plugin For Netflix-Erweiterungs-CRX-Datei herunterladen
Laden Sie FlixSubs - Subtitles Plugin For Netflix-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Flixsubs extension simply detects what is watched on Netflix's and adds your preferable language subtitles. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | llcjbplmeedpplcgabakfhdikbgmajna |
| Offizielle URL | https://chromewebstore.google.com/detail/flixsubs-subtitles-plugin/llcjbplmeedpplcgabakfhdikbgmajna |
| Beschreibung | Simple plugin that adds subtitles to movies and series you watch. |
| Dateigröße | 107 KB |
| Installationsanzahl | 610 |
| Aktuelle Version | 2.2 |
| Letztes Update | 2016-05-07 |
| Veröffentlichungsdatum | 2016-05-07 |
| Bewertung | 1.83/5 Insgesamt 12 Bewertungen |
| Entwickler | flixsubs |
| Zahlungsart | free |
| Erweiterungswebsite | http://flixsubs.com/ |
| Hilfeseite URL | https://flixsub.groovehq.com/help_center |
| Unterstützte Sprachen | 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"
]
}
]
} | |