Netflix Channels

Create channels to watch random episodes of your favorite shows on Netflix.

Vad är Netflix Channels?

Netflix Channels är en Chrome-tillägg utvecklad av http://jonost.me, och dess huvudfunktion är "Create channels to watch random episodes of your favorite shows on Netflix.".

Tilläggsskärmbilder

screenshot

Ladda ner Netflix Channels-förlängningens CRX-fil

Ladda ner Netflix Channels-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

                                            

Grundläggande Information om Tillägg

Namn Netflix Channels Netflix Channels
ID ddfeopklehndllmggeeckagkfigilonb
Officiell webbadress https://chrome.google.com/webstore/detail/netflix-channels/ddfeopklehndllmggeeckagkfigilonb
Beskrivning Create channels to watch random episodes of your favorite shows on Netflix.
Filstorlek 153 KB
Antal Installationer 35
Aktuell Version 0.0.1
Senast Uppdaterad 2014-01-26
Publiceringsdatum 2014-01-26
Betyg 3.50/5 Totalt 2 Betyg
Utvecklare http://jonost.me
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Channels",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Create channels to watch random episodes of your favorite shows on Netflix.",
    "homepage_url": "http:\/\/jonost.me",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Manage Channels",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "*:\/\/*.netflix.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/WiMovie\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}