Get Netflix Trailers

Netflix trailers, just got so much easier. Just click on the link added above the movie.

Hvad er Get Netflix Trailers?

Get Netflix Trailers er en Chrome-udvidelse udviklet af smithmot3, og dens hovedfunktion er "Netflix trailers, just got so much easier. Just click on the link added above the movie.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Get Netflix Trailers-udvidelses-CRX-fil

Download Get 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

                        The easiest and most convenient way to see Movie Trailers and IMDB ratings while browsing on Netflix. With this chrome extension it makes it so much easier, no copy paste or typing it out. You don't even have to leave the page. Just simply click the red 'play trailer' button added above the movie or tv-show you're interested in. The top half of the screen will display trailer, letting continue to browse while the trailer plays.

-- Updates made to fix the extension due to Netflix updates.
-- Updated rating API.                    

Grundlæggende oplysninger om udvidelsen

Navn Get Netflix Trailers Get Netflix Trailers
ID ccnidblbfndpbnceipcgihpfpolpkfkc
Officiel URL https://chromewebstore.google.com/detail/get-netflix-trailers/ccnidblbfndpbnceipcgihpfpolpkfkc
Beskrivelse Netflix trailers, just got so much easier. Just click on the link added above the movie.
Filstørrelse 39.16 KB
Antal Installationer 255
Nuværende Version 0.1.7
Senest Opdateret 2018-08-01
Udgivelsesdato 2018-07-31
Bedømmelse 2.55/5 Samlet 11 Bedømmelser
Udvikler smithmot3
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get Netflix Trailers",
    "short_name": "GNT",
    "description": "Netflix trailers, just got so much easier. Just click on the link added above the movie.",
    "version": "0.1.7",
    "icons": {
        "128": "logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "logo.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*",
                "http:\/\/www.netflix.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "content.js"
            ]
        }
    ]
}