Randflix - Random Episodes For Netflix
Adds a shuffle button to play a random episode of a given show.
What is Randflix - Random Episodes For Netflix?
Randflix - Random Episodes For Netflix is a Chrome extension developed by Susan Chen, and its main feature is "Adds a shuffle button to play a random episode of a given show.".
Extension Screenshots
Download Randflix - Random Episodes For Netflix Extension CRX File
Download Randflix - Random Episodes 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
A handy chrome extension for those who have seen their favourite shows on Netflix way too many times. Randflix allows you to randomize episode playback of a given TV show. When choosing an episode becomes arduous, just turn to Randflix to make the choice for you! https://github.com/bzvikler/netflix-randomizer
Extension Basic Information
Name | Randflix - Random Episodes For Netflix |
ID | enjakkkpkgpcnjbmagjgkccljfimgbhh |
Official URL | https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh |
Description | Adds a shuffle button to play a random episode of a given show. |
File Size | 48.98 KB |
Installation Count | 179 |
Current Version | 1.2 |
Last Updated | 2020-03-27 |
Publish Date | 2020-03-27 |
Rating | 3.00/5 Total 4 Ratings |
Developer | Susan Chen |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/bzvikler/netflix-randomizer |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Randflix - Random Episodes For Netflix", "version": "1.2", "description": "Adds a shuffle button to play a random episode of a given show.", "permissions": [], "page_action": { "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.netflix.com\/*" ], "css": [ "styles.css" ], "js": [ "contentScript.js" ], "all_frames": true } ] } |