vPause - vk.com player hotkeys

Control vk.com (vkontakte) audioplayer form any tab: hotkeys, toolbar button

vPause - vk.com player hotkeys là gì?

vPause - vk.com player hotkeys là một tiện ích mở rộng Chrome được phát triển bởi Spadar Shut, và tính năng chính của nó là "Control vk.com (vkontakte) audioplayer form any tab: hotkeys, toolbar button".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng vPause - vk.com player hotkeys

Tải xuống các tệp mở rộng vPause - vk.com player hotkeys dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Ask questions at http://vk.com/vpause

* Addressbar button to play/pause the player
* A configurable action on double clicking the button: play previous track, play next track, toggle repeat, switch to the tab with player, add current song to my audio
* Hotkeys allow to switch tracks, play, pause, control volume * Optionally show track time on the button
* Hovering the button will show a tooltip with current track title and duration                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên vPause - vk.com player hotkeys vPause - vk.com player hotkeys
ID dbjhmpmaehamokkakfmacgjepggojhmo
URL Chính Thức https://chromewebstore.google.com/detail/vpause-vkcom-player-hotke/dbjhmpmaehamokkakfmacgjepggojhmo
Mô tả Control vk.com (vkontakte) audioplayer form any tab: hotkeys, toolbar button
Kích Thước Tệp 34.76 KB
Số Lần Cài Đặt 849
Phiên Bản Hiện Tại 4.1.2
Cập Nhật Lần Cuối 2020-03-28
Ngày Phát Hành 2020-03-19
Đánh Giá 4.29/5 Tổng số 45 Đánh Giá
Nhà Phát Triển Spadar Shut
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "vPause - vk.com player hotkeys",
    "developer": {
        "name": "Pavel Shut",
        "url": "http:\/\/vk.com\/spadarshut"
    },
    "description": "__MSG_extensionDecription__",
    "default_locale": "ru",
    "manifest_version": 2,
    "version": "4.1.2",
    "icons": {
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "img\/btn_play.png",
        "default_title": "vPause"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/vpause-background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "js\/vpause-contentscript.js"
            ],
            "matches": [
                ""
            ],
            "include_globs": [
                "*"
            ],
            "exclude_globs": [],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "js\/shortcut.js",
        "js\/vpause-injected-hotkeys.js",
        "js\/vpause-injected-listeners.js"
    ],
    "permissions": [
        "tabs",
        "*:\/\/*\/*",
        "storage",
        "http:\/\/*\/*"
    ],
    "commands": {
        "togglePlay": {
            "description": "__MSG_labelHotkeyPlayPause__",
            "global": true
        },
        "prevTrack": {
            "description": "__MSG_labelHotkeyPrevTrack__",
            "global": true
        },
        "nextTrack": {
            "description": "__MSG_labelHotkeyNextTrack__",
            "global": true
        },
        "makeItLouder": {
            "description": "__MSG_labelHotkeyVolUp__",
            "global": true
        },
        "makeItQuieter": {
            "description": "__MSG_labelHotkeyVolDown__",
            "global": true
        },
        "toggleRepeat": {
            "description": "__MSG_labelToggleRepeat__",
            "global": true
        },
        "toggleMute": {
            "description": "__MSG_labelToggleMute__",
            "global": true
        },
        "toggleShuffle": {
            "description": "__MSG_labelToggleShuffle__",
            "global": true
        },
        "addToMyMusic": {
            "description": "__MSG_labelAddSong__",
            "global": true
        },
        "seekForward": {
            "description": "__MSG_labelSeekForward__",
            "global": true
        },
        "seekBack": {
            "description": "__MSG_labelSeekBack__",
            "global": true
        }
    }
}