Fresh
Play the most recent track by a specified user
Fresh là gì?
Fresh là một tiện ích mở rộng Chrome được phát triển bởi mp, và tính năng chính của nó là "Play the most recent track by a specified user".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Fresh
Tải xuống các tệp mở rộng Fresh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Fresh |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
URL Chính Thức | https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl |
Mô tả | Play the most recent track by a specified user |
Kích Thước Tệp | 512 KB |
Số Lần Cài Đặt | 84 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2017-02-08 |
Ngày Phát Hành | 2017-02-08 |
Nhà Phát Triển | mp |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://brostack.com |
Ngôn Ngữ Được Hỗ Trợ | 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" } |