Lucky Flix
Adds a Get Lucky button to Netflix.com, which plays a random film
Vad är Lucky Flix?
Lucky Flix är en Chrome-tillägg utvecklad av Tom Pierce, och dess huvudfunktion är "Adds a Get Lucky button to Netflix.com, which plays a random film".
Tilläggsskärmbilder
Ladda ner Lucky Flix-förlängningens CRX-fil
Ladda ner Lucky Flix-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
Eliminate the endless discussions about which film to watch!
This extension adds a button to your Netflix which will play a random film from the selection listed on your home page.
Remember to rate the films after you've watched them, as this will improve your chances of getting a great random pick next time! Grundläggande Information om Tillägg
| Namn | |
| ID | ohkaikelnphbioolgljkkeikpdhhijga |
| Officiell webbadress | https://chromewebstore.google.com/detail/lucky-flix/ohkaikelnphbioolgljkkeikpdhhijga |
| Beskrivning | Adds a Get Lucky button to Netflix.com, which plays a random film |
| Filstorlek | 56.16 KB |
| Antal Installationer | 47 |
| Aktuell Version | 0.0.2 |
| Senast Uppdaterad | 2015-01-27 |
| Publiceringsdatum | 2015-01-27 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Tom Pierce |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/tompierce/lucky-flix |
| Hjälpsida URL | https://github.com/tompierce/lucky-flix/issues |
| Stödda Språk | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Lucky Flix",
"version": "0.0.2",
"description": "Adds a Get Lucky button to Netflix.com, which plays a random film",
"icons": {
"32": "icon32.png",
"64": "icon64.png",
"110": "icon110.png"
},
"permissions": [],
"content_scripts": [
{
"matches": [
"*:\/\/*.netflix.com\/WiHome"
],
"js": [
"contentscript.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"script.js",
"jquery-1.11.1.min.js",
"jquery.popupoverlay.js"
]
} | |