Nextube - The missing next button
Next button for YouTube
Nextube - The missing next button란 무엇입니까?
Nextube - The missing next button은(는) Nadav에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Next button for YouTube"입니다.
확장 프로그램 스크린샷
Nextube - The missing next button 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Nextube adds a YouTube next button in your browser windows! No more searching for the YouTube tab just to change the current song, with Nextube, just press the next icon and YouTube will play the next available song. Notes: - Please refresh your YouTube tabs after installing Nextube - Nextube will only control the first playing YouTube tab so you can safely keep other YouTube tabs/windows open when not playing.
확장 프로그램 기본 정보
이름 | Nextube - The missing next button |
ID | kefiabkknppcjbbimoijcjbcehlcmcco |
공식 URL | https://chromewebstore.google.com/detail/nextube-the-missing-next/kefiabkknppcjbbimoijcjbcehlcmcco |
설명 | Next button for YouTube |
파일 크기 | 11.39 KB |
설치 횟수 | 175 |
현재 버전 | 0.9.3 |
최근 업데이트 | 2016-03-06 |
출시 날짜 | 2016-03-06 |
평점 | 4.82/5 총 11 개의 평점 |
개발자 | Nadav |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Nextube - The missing next button", "short_name": "Nextube", "version": "0.9.3", "manifest_version": 2, "description": "Next button for YouTube", "icons": { "16": "icons\/yn16.png", "48": "icons\/yn48.png", "128": "icons\/yn128.png" }, "background": { "page": "src\/bg\/background.html", "persistent": true }, "browser_action": { "default_icon": { "19": "icons\/yn19.png", "38": "icons\/yn72.png" }, "default_title": "Nextube" }, "commands": { "next_song": { "suggested_key": { "default": "Ctrl+N", "mac": "MacCtrl+N" }, "description": "Play Next" }, "pause": { "suggested_key": { "default": "Ctrl+P", "mac": "MacCtrl+P" }, "description": "Play\/Pause" } }, "permissions": [ "tabs", "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |