Netflix trailers
Preview the movie(series) of Netflix using this Chrome extension to watch the youtube trailer.
Vad är Netflix trailers?
Netflix trailers är en Chrome-tillägg utvecklad av Urucas, och dess huvudfunktion är "Preview the movie(series) of Netflix using this Chrome extension to watch the youtube trailer.".
Tilläggsskärmbilder
Ladda ner Netflix trailers-förlängningens CRX-fil
Ladda ner Netflix trailers-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
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äggande Information om Tillägg
| Namn | |
| ID | cghmojgimpekpgegljolidgacdhmikmi |
| Officiell webbadress | https://chromewebstore.google.com/detail/netflix-trailers/cghmojgimpekpgegljolidgacdhmikmi |
| Beskrivning | Preview the movie(series) of Netflix using this Chrome extension to watch the youtube trailer. |
| Filstorlek | 342 KB |
| Antal Installationer | 287 |
| Aktuell Version | 0.0.2 |
| Senast Uppdaterad | 2014-09-15 |
| Publiceringsdatum | 2014-09-15 |
| Betyg | 2.33/5 Totalt 3 Betyg |
| Utvecklare | Urucas |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Urucas/netflix-trailers |
| Hjälpsida URL | https://github.com/Urucas/netflix-trailers |
| Stödda Språk | 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"
]
}
]
} | |