Netflix trailers
Preview the movie(series) of Netflix using this Chrome extension to watch the youtube trailer.
Hvad er Netflix trailers?
Netflix trailers er en Chrome-udvidelse udviklet af Urucas, og dens hovedfunktion er "Preview the movie(series) of Netflix using this Chrome extension to watch the youtube trailer.".
Udvidelsesskærmbilleder
Download Netflix trailers-udvidelses-CRX-fil
Download Netflix trailers-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Watch your netflix movies or series trailers right in the Netflix webiste. With this extension, when the movie info pops up, know you'll see a "View Trailer" button, click it to directly watch a youtube trailer. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | cghmojgimpekpgegljolidgacdhmikmi |
| Officiel URL | https://chromewebstore.google.com/detail/netflix-trailers/cghmojgimpekpgegljolidgacdhmikmi |
| Beskrivelse | Preview the movie(series) of Netflix using this Chrome extension to watch the youtube trailer. |
| Filstørrelse | 342 KB |
| Antal Installationer | 287 |
| Nuværende Version | 0.0.2 |
| Senest Opdateret | 2014-09-15 |
| Udgivelsesdato | 2014-09-15 |
| Bedømmelse | 2.33/5 Samlet 3 Bedømmelser |
| Udvikler | Urucas |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/Urucas/netflix-trailers |
| Hjælpeside-URL | https://github.com/Urucas/netflix-trailers |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Netflix trailers",
"version": "0.0.2",
"manifest_version": 2,
"description": "Preview the movie(series) of Netflix using this Chrome extension to watch the youtube trailer.",
"homepage_url": "https:\/\/github.com\/Urucas\/netflix-trailers",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": true
},
"permissions": [
"tabs",
"*:\/\/*.netflix.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.netflix.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |