Randflix - Random Episodes For Netflix
Adds a shuffle button to play a random episode of a given show.
Was ist Randflix - Random Episodes For Netflix?
Randflix - Random Episodes For Netflix ist eine Chrome-Erweiterung, die von Susan Chen entwickelt wurde, und ihr Hauptmerkmal ist "Adds a shuffle button to play a random episode of a given show.".
Erweiterungsscreenshots
Randflix - Random Episodes For Netflix-Erweiterungs-CRX-Datei herunterladen
Laden Sie Randflix - Random Episodes 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
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | enjakkkpkgpcnjbmagjgkccljfimgbhh |
| Offizielle URL | https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh |
| Beschreibung | Adds a shuffle button to play a random episode of a given show. |
| Dateigröße | 48.98 KB |
| Installationsanzahl | 179 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2020-03-27 |
| Veröffentlichungsdatum | 2020-03-27 |
| Bewertung | 3.00/5 Insgesamt 4 Bewertungen |
| Entwickler | Susan Chen |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/bzvikler/netflix-randomizer |
| Unterstützte Sprachen | 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
}
]
} | |