Fresh
Play the most recent track by a specified user
Fresh란 무엇입니까?
Fresh은(는) mp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play the most recent track by a specified user"입니다.
확장 프로그램 스크린샷
Fresh 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension open a new tab with the most recent Soundcloud track of a specified username and plays it automatically. For this to work you must set the user url in the options page. For instance you must write madpr0ps if your tracks url is https://soundcloud.com/madpr0ps/tracks It also has context menu items to play the user's liked tracks or the main Soundcloud stream.
확장 프로그램 기본 정보
이름 | Fresh |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
공식 URL | https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl |
설명 | Play the most recent track by a specified user |
파일 크기 | 512 KB |
설치 횟수 | 84 |
현재 버전 | 2.2 |
최근 업데이트 | 2017-02-08 |
출시 날짜 | 2017-02-08 |
개발자 | mp |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://brostack.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fresh", "description": "Play the most recent track by a specified user", "version": "2.2", "permissions": [ "storage", "contextMenus", "https:\/\/soundcloud.com\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_icon": { "128": "icon128.png" }, "default_title": "Play most recent track" }, "content_scripts": [ { "matches": [ "https:\/\/soundcloud.com\/*" ], "js": [ "jquery.js", "initialize.js", "content.js" ] } ], "icons": { "128": "icon128.png" }, "commands": { "play": { "suggested_key": { "default": "Ctrl+Comma", "mac": "Command+Comma" }, "description": "Go to playing tab" } }, "options_page": "options.html" } |