Media Key Sharer

Share media key control between Chrome and system media.

What is Media Key Sharer?

Media Key Sharer is a Chrome extension developed by aleccoates.dev, and its main feature is "Share media key control between Chrome and system media.".

Extension Screenshots

screenshot
screenshot

Download Media Key Sharer Extension CRX File

Download Media Key Sharer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        About:
This extension allows you to use your keyboard's media keys to control both media playing on Chrome (YouTube videos etc.) as well as system controlled media (such as Spotify) from any application on your computer. It also allows for extra video control via media keys that would' be otherwise impossible.

Features:
-Use media keys to control both Chrome and system media.
-Use media keys to skip and close ads on YouTube.
-Use media keys to play next and previous videos on YouTube videos.
-Use media keys to toggle fullscreen video.
-Use media keys to swap videos and tabs.
-Use media keys to fast forward video.

Usage:
-To play/pause Chrome media - Tap the "Play/Pause" key once.
-To interact with system media - Double tap the "Stop" key.
-To skip ads or select the next video - Tap the "Next" key once.
-To select the previous video - Tap the "Previous" key once.
-To increase playback speed - Double tap the "Next" key.
-To decrease playback speed - Double tap the "Previous" key.
-To toggle fullscreen video - Double tap the "Play/Pause" key.
-To switch the currently playing video/tab - Double tap the "Stop" key.

After single tapping, you should wait 1 second before tapping again.

Double tabs should happen within 1 second. The extension icon should become green for 4 seconds, in this time use any media key you wish. The extension icon will then become orange for the next ~7 seconds (you cannot control system media again in this time). The extension icon will become white when ready to use again.





Notes:
-This extension works by using unintended functionality of the MediaSession API as well as trying to work with completely non-conformed video standards, so unsurprisingly it can be unpredictable.

-Media keys functionality was added with Chrome 73, you must be on this version or higher for the extension to work. 

-Media key functionality was also changed lots at the start of its integration, so even on Chrome 73 (and the next few versions) the extension may be even more unpredictable. 

-If media key events still don't work, check that both chrome://flags/#hardware-media-key-handling and chrome://flags/#hardware-media-key-handling are set to "enabled".                    

Extension Basic Information

Name Media Key Sharer Media Key Sharer
ID jbbfjepmodndibhhmpjjcakjhibacgho
Official URL https://chromewebstore.google.com/detail/media-key-sharer/jbbfjepmodndibhhmpjjcakjhibacgho
Description Share media key control between Chrome and system media.
File Size 30.43 KB
Installation Count 124
Current Version 1.2.0
Last Updated 2020-06-05
Publish Date 2020-06-03
Rating 4.33/5 Total 3 Ratings
Developer aleccoates.dev
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "author": "Alec Coates",
    "version": "1.2.0",
    "default_locale": "en",
    "minimum_chrome_version": "26",
    "icons": {
        "16": "icons\/white16.png",
        "32": "icons\/white32.png",
        "48": "icons\/white48.png",
        "128": "icons\/white128.png"
    },
    "permissions": [
        ""
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "incognito": "spanning"
}