RokuKast

A Chrome extension to stream web videos to Roku devices.

Τι είναι το RokuKast;

Το RokuKast είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dan Greuel, και η κύρια λειτουργία του είναι "A Chrome extension to stream web videos to Roku devices.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης RokuKast

Λήψη αρχείων επέκτασης RokuKast σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        RokuKast detects videos in your browser and lets you either download them or stream them to your Roku device.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα RokuKast RokuKast
ID bkcaoipeckgolimcehafhdmcegipapnm
Επίσημο URL https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm
Περιγραφή A Chrome extension to stream web videos to Roku devices.
Μέγεθος Αρχείου 171 KB
Αριθμός Εγκαταστάσεων 9,277
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2019-11-13
Ημερομηνία Δημοσίευσης 2019-11-13
Αξιολόγηση 3.62/5 Συνολικά 42 Αξιολογήσεις
Προγραμματιστής Dan Greuel
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/dgreuel/RokuKast
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/dgreuel/RokuKast/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RokuKast",
    "description": "A Chrome extension to stream web videos to Roku devices.",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}