Netflix++

Browser extensions enhancing your Netflix browsing experience

Co je Netflix++?

Netflix++ je rozšíření Chrome vyvinuté stevokk, a jeho hlavní funkcí je „Browser extensions enhancing your Netflix browsing experience“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Netflix++

Stáhněte si soubory rozšíření Netflix++ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        NEW! 2017 version, here to enhance your Netflix experience!

Currently shows you ratings from 3 independent sources: IMDB, Rotten Tomatoes & Metacritic

Fully open source, any issues or feature requests go here: https://github.com/stevokk/netflixplusplus                    

Základní Informace o Rozšíření

Název Netflix++ Netflix++
ID ofiindmkglmjpndljggpcpamcglnmmpl
Oficiální URL https://chromewebstore.google.com/detail/netflix++/ofiindmkglmjpndljggpcpamcglnmmpl
Popis Browser extensions enhancing your Netflix browsing experience
Velikost souboru 79.14 KB
Počet instalací 4,279
Aktuální Verze 1.0.2
Poslední Aktualizace 2017-08-13
Datum Vydání 2017-08-13
Hodnocení 4.00/5 Celkem 4 Hodnocení
Vývojář stevokk
Typ Platby free
Webové stránky Rozšíření https://github.com/stevokk/netflixplusplus
URL Stránky Nápovědy https://github.com/stevokk/netflixplusplus
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix++",
    "version": "1.0.2",
    "description": "Browser extensions enhancing your Netflix browsing experience",
    "homepage_url": "https:\/\/github.com\/stevokk\/netflixplusplus",
    "manifest_version": 2,
    "minimum_chrome_version": "58",
    "applications": {
        "gecko": {
            "id": "netflixplusplus\/stevokk",
            "strict_min_version": "52.0"
        }
    },
    "permissions": [
        "storage",
        "https:\/\/netflixplusplus.heroku.com\/*",
        "http:\/\/localhost\/*"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}