FlixSubs - Subtitles Plugin For Netflix
Simple plugin that adds subtitles to movies and series you watch.
What is FlixSubs - Subtitles Plugin For Netflix?
FlixSubs - Subtitles Plugin For Netflix is a Chrome extension developed by flixsubs, and its main feature is "Simple plugin that adds subtitles to movies and series you watch.".
Extension Screenshots
Download FlixSubs - Subtitles Plugin For Netflix Extension CRX File
Download FlixSubs - Subtitles Plugin For Netflix extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Flixsubs extension simply detects what is watched on Netflix's and adds your preferable language subtitles.
Extension Basic Information
Name | FlixSubs - Subtitles Plugin For Netflix |
ID | llcjbplmeedpplcgabakfhdikbgmajna |
Official URL | https://chromewebstore.google.com/detail/flixsubs-subtitles-plugin/llcjbplmeedpplcgabakfhdikbgmajna |
Description | Simple plugin that adds subtitles to movies and series you watch. |
File Size | 107 KB |
Installation Count | 610 |
Current Version | 2.2 |
Last Updated | 2016-05-07 |
Publish Date | 2016-05-07 |
Rating | 1.83/5 Total 12 Ratings |
Developer | flixsubs |
Payment Type | free |
Extension Website | http://flixsubs.com/ |
Help Page URL | https://flixsub.groovehq.com/help_center |
Supported Languages | 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" ] } ] } |