Can I Stream It?

Displays streaming availability of movie/TV show with most similar title to highlighted text on Netflix, Hulu, Amazon Prime and HBO.

Was ist Can I Stream It??

Can I Stream It? ist eine Chrome-Erweiterung, die von joshzignego entwickelt wurde, und ihr Hauptmerkmal ist "Displays streaming availability of movie/TV show with most similar title to highlighted text on Netflix, Hulu, Amazon Prime and HBO.".

Erweiterungsscreenshots

screenshot

Can I Stream It?-Erweiterungs-CRX-Datei herunterladen

Laden Sie Can I Stream It?-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Tells if the move/TV show with most similar title to the highlighted text is available to stream on Netflix, Hulu, Amazon Prime and HBO.


To use: 

Highlight text.
Click the little green movie icon in the top right of chrome. 
You can click the links if they exist, or simply close the alert box.                    

Grundlegende Informationen zur Erweiterung

Name Can I Stream It? Can I Stream It?
ID bgmliogjeibnfngnflhbhimclniedpab
Offizielle URL https://chromewebstore.google.com/detail/can-i-stream-it/bgmliogjeibnfngnflhbhimclniedpab
Beschreibung Displays streaming availability of movie/TV show with most similar title to highlighted text on Netflix, Hulu, Amazon Prime and HBO.
Dateigröße 65.42 KB
Installationsanzahl 98
Aktuelle Version 1.1
Letztes Update 2018-01-29
Veröffentlichungsdatum 2018-01-28
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler joshzignego
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Can I Stream It?",
    "version": "1.1",
    "description": "Displays streaming availability of movie\/TV show with most similar title to highlighted text on Netflix, Hulu, Amazon Prime and HBO.",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "https:\/\/reelgood.com\/",
        "http:\/\/reelgood.com\/",
        "https:\/\/justwatch.com\/",
        "http:\/\/justwatch.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "sweetalert2.all.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "logos\/movie16.png"
    },
    "icons": {
        "16": "logos\/movie16.png",
        "48": "logos\/movie48.png",
        "128": "logos\/movie128.png"
    },
    "web_accessible_resources": [
        "logos\/netflix.png",
        "logos\/hulu.png",
        "logos\/amazon.png",
        "logos\/hbo.png"
    ]
}