iCheckNetflixPlus

Searches Netflix for movies in iCheckMovies top lists.

Cos'è iCheckNetflixPlus?

iCheckNetflixPlus è un'estensione di Chrome sviluppata da Gavin Harrison, e la sua funzione principale è "Searches Netflix for movies in iCheckMovies top lists.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione iCheckNetflixPlus

Scarica i file di estensione iCheckNetflixPlus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Adds links to Netflix pages for the unchecked movies in iCheckMovies.com top lists, movie pages and search pages.

Must be logged into netflix.com for the extension to work.  If a movie is not found, or not available, links to the Netflix search page, or Netflix movie page are still added.

Update 3.0.1 (12/20/2014)

Added links to /movies/unchecked/

Update 3.0 (12/16/2014)

Complete re-write.                    

Informazioni di Base sull'Estensione

Nome iCheckNetflixPlus iCheckNetflixPlus
ID jeinanillnkehhekcipjggepagfdkpjb
URL Ufficiale https://chromewebstore.google.com/detail/ichecknetflixplus/jeinanillnkehhekcipjggepagfdkpjb
Descrizione Searches Netflix for movies in iCheckMovies top lists.
Dimensione del File 277 KB
Conteggio Installazioni 76
Versione Corrente 3.0.1
Ultimo Aggiornamento 2014-12-21
Data di Pubblicazione 2014-12-20
Valutazione 3.25/5 Totale 4 Valutazioni
Sviluppatore Gavin Harrison
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "iCheckNetflixPlus",
    "version": "3.0.1",
    "description": "Searches Netflix for movies in iCheckMovies top lists.",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "bower_components\/jquery\/dist\/jquery.min.js",
        "bower_components\/jquery\/dist\/jquery.min.map",
        "bower_components\/underscore\/underscore-min.js",
        "bower_components\/underscore\/underscore-min.map"
    ],
    "background": {
        "scripts": [
            "bower_components\/jquery\/dist\/jquery.min.js",
            "bower_components\/underscore\/underscore-min.js",
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.icheckmovies.com\/lists\/*"
            ],
            "css": [
                "list.css"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/underscore\/underscore-min.js",
                "list.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.icheckmovies.com\/movies\/unchecked\/*"
            ],
            "css": [
                "list.css"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/underscore\/underscore-min.js",
                "list.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.icheckmovies.com\/movies\/*"
            ],
            "css": [
                "movie.css"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/underscore\/underscore-min.js",
                "movie.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/www.icheckmovies.com\/*",
        "http:\/\/www.icheckmovies.com\/*",
        "https:\/\/*.netflix.com\/*",
        "http:\/\/*.netflix.com\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}