Video Stream Shortcuts

Add some YouTube-like shortcuts to video streaming services

Τι είναι το Video Stream Shortcuts;

Το Video Stream Shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Masaki Kobayashi, και η κύρια λειτουργία του είναι "Add some YouTube-like shortcuts to video streaming services".

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

screenshot

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

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

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

                        Want YouTube-like shortcut keys in other streaming services?
This extension enables you to use some shortcuts below.

k: Pause/Resume the video
j: Move 10 seconds backward
l: Move 10 seconds forward
f: Enable/Disable fullscreen
m: Mute/Unmute
Shift+, / <: Decrease playback speed
Shift+. / >: Increase playback speed
0–9: Jump to percentages of the video, except for DAZN.

Supported services
- Prime Video
- TED
- Microsoft Stream
- DAZN
- OPENREC

This extension is open source.
Suggestions and pull requests are welcomed!
https://github.com/mkobayashime/video-stream-shortcuts                    

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

Όνομα Video Stream Shortcuts Video Stream Shortcuts
ID jkclfjpmbcenbmmheenahiglgkefekim
Επίσημο URL https://chromewebstore.google.com/detail/video-stream-shortcuts/jkclfjpmbcenbmmheenahiglgkefekim
Περιγραφή Add some YouTube-like shortcuts to video streaming services
Μέγεθος Αρχείου 32.35 KB
Αριθμός Εγκαταστάσεων 750
Τρέχουσα Έκδοση 4.1.0
Τελευταία Ενημέρωση 2023-09-10
Ημερομηνία Δημοσίευσης 2020-06-25
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής Masaki Kobayashi
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/mkobayashime/video-stream-shortcuts
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Stream Shortcuts",
    "version": "4.1.0",
    "description": "Add some YouTube-like shortcuts to video streaming services",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/web.microsoftstream.com\/*"
            ],
            "js": [
                "msStream.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.amazon.co.jp\/gp\/video\/*"
            ],
            "js": [
                "primeVideo.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.ted.com\/talks\/*"
            ],
            "run_at": "document_end",
            "js": [
                "ted.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.dazn.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "dazn.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.openrec.tv\/live\/*"
            ],
            "run_at": "document_end",
            "js": [
                "openrec.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "svg\/*",
        "*.css"
    ]
}