Yodeck Web Player Extension

Unlocks all features of Yodeck Web Player

Τι είναι το Yodeck Web Player Extension;

Το Yodeck Web Player Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.yodeck.com, και η κύρια λειτουργία του είναι "Unlocks all features of Yodeck Web Player".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Yodeck Web Player Extension

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

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

                        The official Yodeck Web Player Extension unlocks all Yodeck Digital Signage features for Chrome! With it, you can preview playback in Chrome, or setup Chrome as a normal 24/7 Yodeck Web Player!

By installing the Web Player Extension, you will get:

- Screenshots in the Yodeck Portal
- All Web Pages will now work
- Apply Volume Schedules in Web Pages

Important notes:

- The Yodeck Web Player can be opened here: https://player.yodeck.com
- For setting up your computer as a 24/7 Yodeck Web Player (i.e. start Chrome on boot, go fullscreen, and more), read our instructions here: https://www.yodeck.com/docs/setting-up-yodeck-web-player
- If you need help using the Yodeck Web Player or you have any questions, please reach out by clicking the Support link above!                    

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

Όνομα Yodeck Web Player Extension Yodeck Web Player Extension
ID kfmgapneffipolpljmofbmonafjlodim
Επίσημο URL https://chromewebstore.google.com/detail/yodeck-web-player-extensi/kfmgapneffipolpljmofbmonafjlodim
Περιγραφή Unlocks all features of Yodeck Web Player
Μέγεθος Αρχείου 60.47 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 0.0.0.6
Τελευταία Ενημέρωση 2023-11-28
Ημερομηνία Δημοσίευσης 2021-10-21
Αξιολόγηση 3.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://www.yodeck.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.yodeck.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://help.yodeck.com/
URL της Σελίδας Πολιτικής Απορρήτου https://www.yodeck.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yodeck Web Player Extension",
    "description": "Unlocks all features of Yodeck Web Player",
    "version": "0.0.0.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Yodeck Extension Helper",
        "default_popup": ".\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.yodeck.com\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "noNewTab.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "declarativeNetRequest",
        "scripting",
        "webNavigation",
        "cookies"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "icons": {
        "128": "128.png"
    },
    "offline_enabled": true
}