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