Fresh

Play the most recent track by a specified user

Freshคืออะไร?

Fresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mp และคุณลักษณะหลักของมันคือ "Play the most recent track by a specified user"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fresh

ดาวน์โหลดไฟล์ส่วนขยาย Fresh ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
}