Media Keys & More for Overcast

Unofficial extension to use your keyboard's media keys with Overcast's web player, plus other optional enhancements.

Τι είναι το Media Keys & More for Overcast;

Το Media Keys & More for Overcast είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tsmango, και η κύρια λειτουργία του είναι "Unofficial extension to use your keyboard's media keys with Overcast's web player, plus other optional enhancements.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Media Keys & More for Overcast

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

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

                        **Please Note:** This is an unofficial extension and is not affiliated with or supported by Overcast Radio, LLC in any way. If you have any issues or want to submit a pull request, please do so on [GitHub](https://github.com/tsmango/overcast-media-keys).

This Chrome extension's main feature is to map your keyboard's media keys (previous, play/pause, next) to [Overcast](https://overcast.fm)'s web player.

In addition to media key support, there are four options:

* "Sort episodes by date" - When enabled, will sort the "All Active Episodes" list by date (oldest or newest first).
* "Highlight in progress episodes" - When enabled, will highlight any in progress episodes on the "All Active Episodes" list.
* "Prepend day of week" - When enabled, the day of week will be prepended to the date of each episode in the "All Active Episodes" list.
* "Open links in new tabs" - When enabled, will simply make the three links below the player on episode pages open in new tabs.

These features can be enabled or disabled by clicking "Options" in Chrome's "Extensions" area and reloading any already open Overcast pages.

You can install the extension [here in the Chrome Web Store](https://chrome.google.com/webstore/detail/media-keys-for-overcast/iomjboggdipkbeddinniaoiffjibdach). After installing the extension, reload any tabs already on Overcast's site and your media keys will start working. Keys work globally by default, but can be restricted to only be available while in Chrome by clicking the "Keyboard Shortcuts" link at the bottom of your Extensions preference page in Chrome.

Overcast is a trademark of and copyrighted by [Overcast Radio, LLC](https://overcast.fm). Thanks, Marco!

This extension started as a fork of Boris Smus' [keysocket extension](https://github.com/borismus/keysocket). Thanks, Boris!                    

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

Όνομα Media Keys & More for Overcast Media Keys & More for Overcast
ID iomjboggdipkbeddinniaoiffjibdach
Επίσημο URL https://chromewebstore.google.com/detail/media-keys-more-for-overc/iomjboggdipkbeddinniaoiffjibdach
Περιγραφή Unofficial extension to use your keyboard's media keys with Overcast's web player, plus other optional enhancements.
Μέγεθος Αρχείου 59.54 KB
Αριθμός Εγκαταστάσεων 201
Τρέχουσα Έκδοση 1.4
Τελευταία Ενημέρωση 2017-02-23
Ημερομηνία Δημοσίευσης 2017-02-23
Αξιολόγηση 4.64/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής tsmango
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/tsmango/overcast-media-keys
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/tsmango/overcast-media-keys
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Media Keys & More for Overcast",
    "version": "1.4",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "description": "Unofficial extension to use your keyboard's media keys with Overcast's web player, plus other optional enhancements.",
    "homepage_url": "https:\/\/github.com\/tsmango\/overcast-media-keys",
    "manifest_version": 2,
    "commands": {
        "prev": {
            "suggested_key": {
                "default": "MediaPrevTrack",
                "mac": "MediaPrevTrack"
            },
            "description": "Rewind",
            "global": true
        },
        "play-pause": {
            "suggested_key": {
                "default": "MediaPlayPause",
                "mac": "MediaPlayPause"
            },
            "description": "Play\/Pause",
            "global": true
        },
        "next": {
            "suggested_key": {
                "default": "MediaNextTrack",
                "mac": "MediaNextTrack"
            },
            "description": "Fast Forward",
            "global": true
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/overcast.fm\/podcasts",
                "*:\/\/overcast.fm\/+*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "overcast-media-keys.js"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}