Randflix - Random Episodes For Netflix
Adds a shuffle button to play a random episode of a given show.
Cos'è Randflix - Random Episodes For Netflix?
Randflix - Random Episodes For Netflix è un'estensione di Chrome sviluppata da Susan Chen, e la sua funzione principale è "Adds a shuffle button to play a random episode of a given show.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Randflix - Random Episodes For Netflix
Scarica i file di estensione Randflix - Random Episodes For Netflix in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | enjakkkpkgpcnjbmagjgkccljfimgbhh |
| URL Ufficiale | https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh |
| Descrizione | Adds a shuffle button to play a random episode of a given show. |
| Dimensione del File | 48.98 KB |
| Conteggio Installazioni | 179 |
| Versione Corrente | 1.2 |
| Ultimo Aggiornamento | 2020-03-27 |
| Data di Pubblicazione | 2020-03-27 |
| Valutazione | 3.00/5 Totale 4 Valutazioni |
| Sviluppatore | Susan Chen |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina di Aiuto | https://github.com/bzvikler/netflix-randomizer |
| Lingue Supportate | 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
}
]
} | |