Netflip
Finally, Netflix goes sideways when you do.
Vad är Netflip?
Netflip är en Chrome-tillägg utvecklad av SLC, och dess huvudfunktion är "Finally, Netflix goes sideways when you do.".
Tilläggsskärmbilder
Ladda ner Netflip-förlängningens CRX-fil
Ladda ner Netflip-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
Netflip lets you to rotate your Chrome browser screen 90° clockwise or counter clockwise for the comfiest of horizontal binge-watching sessions. Forget sitting up straight or straining and craning your neck to watch while lying down. Netflix just got way more comfortable. Grundläggande Information om Tillägg
| Namn | |
| ID | oapgjaijhofipjnaienfoapbjdcehbpk |
| Officiell webbadress | https://chromewebstore.google.com/detail/netflip/oapgjaijhofipjnaienfoapbjdcehbpk |
| Beskrivning | Finally, Netflix goes sideways when you do. |
| Filstorlek | 151 KB |
| Antal Installationer | 442 |
| Aktuell Version | 1.0.4 |
| Senast Uppdaterad | 2017-11-03 |
| Publiceringsdatum | 2017-11-03 |
| Betyg | 2.19/5 Totalt 16 Betyg |
| Utvecklare | SLC |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Netflip",
"short_name": "Netflip",
"description": "Finally, Netflix goes sideways when you do.",
"version": "1.0.4",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.netflix.com\/*"
],
"css": [
"inject.css"
],
"js": [
"jquery.min.js"
]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Flip yo flix!",
"default_popup": "popup.html"
}
} | |