YouTube Randomiser
Shuffle YouTube albums.
YouTube Randomiser란 무엇입니까?
YouTube Randomiser은(는) James & Chris에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shuffle YouTube albums."입니다.
확장 프로그램 스크린샷
YouTube Randomiser 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Many times you come across YouTube videos that contain full albums. Often the songs are listed in the description, along with their timestamps. This extension allows you to shuffle the songs and to easily find the name of what song is currently playing. -Video hide button added. -Sometimes does not activate properly on pages that it should. A refresh of the page should fix this. If you have any issues please submit them to: https://github.com/jamesthompson275/YoutubeRandomiser
확장 프로그램 기본 정보
이름 | YouTube Randomiser |
ID | kbonbjcebioebdkiceoobjjgdjllmklo |
공식 URL | https://chromewebstore.google.com/detail/youtube-randomiser/kbonbjcebioebdkiceoobjjgdjllmklo |
설명 | Shuffle YouTube albums. |
파일 크기 | 12.55 KB |
설치 횟수 | 254 |
현재 버전 | 0.8.1 |
최근 업데이트 | 2016-11-16 |
출시 날짜 | 2016-11-15 |
평점 | 3.29/5 총 7 개의 평점 |
개발자 | James & Chris |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Randomiser", "description": "Shuffle YouTube albums.", "version": "0.8.1", "icons": { "128": "images\/icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "scripts\/inject.js" ], "css": [ "styles\/style.css" ] } ], "web_accessible_resources": [ "scripts\/extension.js" ], "background": { "scripts": [ "scripts\/bootstrap.js" ], "persistent": false }, "permissions": [ "tabs", "storage", "https:\/\/www.youtube.com\/", "http:\/\/www.youtube.com\/" ], "page_action": { "default_title": "YouTube Randomiser", "default_icon": "images\/icon.png", "default_popup": "popup.html" } } |