Skip for YouTube Playlists

Skip to the next song on your playlists from anywhere in Chrome.

什麼是Skip for YouTube Playlists?

Skip for YouTube Playlists是由Sunny Nahar開發的Chrome擴展程式,該擴展的主要功能是“Skip to the next song on your playlists from anywhere in Chrome.”。

擴展截圖

screenshot

下載Skip for YouTube Playlists擴展crx文件

下載Skip for YouTube Playlists擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        v0.0.0.2
Clicking the browser toolbar icon skips forward.

v0.0.0.1
Use keyboard shortcuts to skip to the next and previous song on your playlist from any tab in the Chrome browser. You can set global shortcuts so that this will when you are using other applications as well!

You can set the tab which is running your playlist (if you have multiple YouTube tabs open), and use shortcuts to go backward and forward in the playlist.

Set the shortcuts in chrome://extensions at Keyboard Shortcuts at the bottom of the page.                    

擴展基本資訊

名稱 Skip for YouTube Playlists Skip for YouTube Playlists
ID phhfjgmejoichkchjpbaflhnomjllien
官方網址 https://chromewebstore.google.com/detail/skip-for-youtube-playlist/phhfjgmejoichkchjpbaflhnomjllien
簡介 Skip to the next song on your playlists from anywhere in Chrome.
檔案大小 29.3 KB
安裝次數 422
目前版本 0.0.0.2
更新時間 2016-09-03
上架時間 2016-09-03
評分 4.50/5 共 16 次評分
開發者 Sunny Nahar
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Skip for YouTube Playlists",
    "description": "Skip to the next song on your playlists from anywhere in Chrome.",
    "version": "0.0.0.2",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "commands"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "commands": {
        "skip-forward": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Skip Forward",
            "global": true
        },
        "skip-back": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Skip Back",
            "global": true
        },
        "set-playlist": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "Set Playlist Tab"
        }
    },
    "icons": {
        "128": "icons\/skip128.png",
        "19": "icons\/skip19.png",
        "32": "icons\/skip32.png",
        "48": "icons\/skip48.png",
        "64": "icons\/skip64.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/skip19.png"
        },
        "default_title": "Skip to next song"
    }
}