Randflix - Random Episodes For Netflix
Adds a shuffle button to play a random episode of a given show.
Vad är Randflix - Random Episodes For Netflix?
Randflix - Random Episodes For Netflix är en Chrome-tillägg utvecklad av Susan Chen, och dess huvudfunktion är "Adds a shuffle button to play a random episode of a given show.".
Tilläggsskärmbilder
Ladda ner Randflix - Random Episodes For Netflix-förlängningens CRX-fil
Ladda ner Randflix - Random Episodes For Netflix-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | enjakkkpkgpcnjbmagjgkccljfimgbhh |
| Officiell webbadress | https://chromewebstore.google.com/detail/randflix-random-episodes/enjakkkpkgpcnjbmagjgkccljfimgbhh |
| Beskrivning | Adds a shuffle button to play a random episode of a given show. |
| Filstorlek | 48.98 KB |
| Antal Installationer | 179 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2020-03-27 |
| Publiceringsdatum | 2020-03-27 |
| Betyg | 3.00/5 Totalt 4 Betyg |
| Utvecklare | Susan Chen |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://github.com/bzvikler/netflix-randomizer |
| Stödda Språk | 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
}
]
} | |