Fresh
Play the most recent track by a specified user
Apa itu Fresh?
Fresh adalah ekstensi Chrome yang dikembangkan oleh mp, dan fitur utamanya adalah "Play the most recent track by a specified user".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Fresh
Unduh file ekstensi Fresh dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Fresh |
ID | khgnmjipmgmchnpaplopbndofhlffdcl |
URL Resmi | https://chromewebstore.google.com/detail/fresh/khgnmjipmgmchnpaplopbndofhlffdcl |
Deskripsi | Play the most recent track by a specified user |
Ukuran File | 512 KB |
Jumlah Instalasi | 84 |
Versi Saat Ini | 2.2 |
Terakhir Diperbarui | 2017-02-08 |
Tanggal Publikasi | 2017-02-08 |
Pengembang | mp |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | http://brostack.com |
Bahasa yang Didukung | 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" } |