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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}