Hotkeys for vk.com

Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.

Was ist Hotkeys for vk.com?

Hotkeys for vk.com ist eine Chrome-Erweiterung, die von https://sites.google.com/site/ddenex entwickelt wurde, und ihr Hauptmerkmal ist "Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Hotkeys for vk.com-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hotkeys for vk.com-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.                    

Grundlegende Informationen zur Erweiterung

Name Hotkeys for vk.com Hotkeys for vk.com
ID amaobfendgcolppeioeageanmillkmkc
Offizielle URL https://chromewebstore.google.com/detail/hotkeys-for-vkcom/amaobfendgcolppeioeageanmillkmkc
Beschreibung Control music playback (Play, Pause, Previous, Next) on vk.com with widget or keyboard.
Dateigröße 102 KB
Installationsanzahl 1,789
Aktuelle Version 1.5.2.555
Letztes Update 2018-10-22
Veröffentlichungsdatum 2018-10-21
Bewertung 4.24/5 Insgesamt 90 Bewertungen
Entwickler https://sites.google.com/site/ddenex
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://vk.com/vk_media_keys
Hilfeseite URL https://vk.com/vk_media_keys
Unterstützte Sprachen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.5.2.555",
    "short_name": "VK Media Keys",
    "homepage_url": "http:\/\/vk.com\/vk_media_keys",
    "content_security_policy": "script-src 'self' https:\/\/stats.g.doubleclick.net\/dc.js https:\/\/ssl.google-analytics.com; object-src 'self'",
    "name": "__MSG_application_title__",
    "description": "__MSG_application_description__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/logo16.png",
        "48": "icons\/logo48.png",
        "128": "icons\/logo128.png"
    },
    "permissions": [
        "notifications",
        "storage",
        "*:\/\/*.vk.com\/",
        "*:\/\/*.lst.fm\/"
    ],
    "web_accessible_resources": [
        "icons\/logo174.png"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/logo19.png",
            "38": "icons\/logo38.png"
        }
    },
    "commands": {
        "cmd-play-pause": {
            "global": true,
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "__MSG_play_pause_description__"
        },
        "cmd-play-next": {
            "global": true,
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "__MSG_play_next_description__"
        },
        "cmd-play-prev": {
            "global": true,
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "__MSG_play_prev_description__"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.vk.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.vk.com\/*"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    }
}