Playlist

Create a playlist of webpages whether it is for music or videos or just to keep track of what you want to look at.

Playlist란 무엇입니까?

Playlist은(는) bluesh8dz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create a playlist of webpages whether it is for music or videos or just to keep track of what you want to look at."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Playlist 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows to create a playlist of pages. It will automatically go to the next page after a video or audio in the page has finished playing (working with Youtube™ and SoundCloud®).
It allows to do these following commands:

- Create a playlist of pages
- Add current active page to the playlist (Alt+A)
- Start playing the playlist in the current active tab by choosing a link in the list (Alt+S)
- Start playing the playlist in a new pinned tab by clicking on the logo (Alt+Shift+S)
- Choose to shuffle playlist play
- Choose to loop playlist play
- Reveal playlist in popup (Alt+R)
- Play/Pause the playlist (MediaPlayPause or Alt+S)
- Go to Next page (MediaNext)
- Go to previous page (MediaPrevious)

All these commands can be assigned to a custom shortcut.

Youtube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

확장 프로그램 기본 정보

이름 Playlist Playlist
ID cggmpffhgmghfncamcbijdgdplibbagn
공식 URL https://chrome.google.com/webstore/detail/cggmpffhgmghfncamcbijdgdplibbagn
설명 Create a playlist of webpages whether it is for music or videos or just to keep track of what you want to look at.
파일 크기 35.87 KB
설치 횟수 57
현재 버전 0.0.8
최근 업데이트 2020-03-18
출시 날짜 2020-03-17
개발자 bluesh8dz
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Playlist",
    "short_name": "Playlist",
    "version": "0.0.8",
    "manifest_version": 2,
    "description": "Create a playlist of webpages whether it is for music or videos or just to keep track of what you want to look at.",
    "author": "Sh8dz",
    "icons": {
        "16": "icons\/PL16.png",
        "48": "icons\/PL48.png",
        "128": "icons\/PL128.png"
    },
    "browser_action": {
        "default_title": "Playlist",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "src\/contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "src\/framescript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "management",
        "history",
        "activeTab",
        "tabs",
        "sessions",
        "http:\/\/*\/",
        "",
        "storage",
        "unlimitedStorage",
        "notifications",
        "contextMenus"
    ],
    "commands": {
        "enqueue": {
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            },
            "description": "Adds current page to the current playlist"
        },
        "start": {
            "suggested_key": {
                "default": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Start playing in current tab"
        },
        "startInNewTab": {
            "suggested_key": {
                "default": "Shift+Alt+S",
                "mac": "Shift+Alt+S"
            },
            "description": "Start playing in a new tab"
        },
        "playPause": {
            "suggested_key": {
                "default": "MediaPlayPause"
            },
            "description": "Plays or pauses the media in the last used tab running a playlist",
            "global": true
        },
        "previous": {
            "suggested_key": {
                "default": "MediaPrevTrack"
            },
            "description": "Plays the previous track of the playling playlist in the current tab",
            "global": true
        },
        "next": {
            "suggested_key": {
                "default": "MediaNextTrack"
            },
            "description": "Plays the next track of the playling playlist in the current tab",
            "global": true
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+D",
                "mac": "Alt+D"
            },
            "description": "Display playlist popup"
        },
        "Shuffle": {
            "description": "Plays the playlist in a shuffle order or stop doing so"
        },
        "Loop": {
            "description": "Loops the playlist or stops doing so"
        }
    }
}