Quick Preview for SoundCloud

Hover the ▶️ Button to Preview Music on SoundCloud

Что такое Quick Preview for SoundCloud?

Quick Preview for SoundCloud - это расширение Chrome, разработанное https://mattias.lol, и его основная функция - "Hover the ▶️ Button to Preview Music on SoundCloud".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Quick Preview for SoundCloud

Скачайте файлы расширений Quick Preview for SoundCloud в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension lets you listen to samples from any track on SoundCloud by just hovering over the play button with your mouse. It also enables you to preview content without sacrificing the progress of other, currently playing ones.

Click the extension icon to change preferences.                    

Основная информация о расширении

Название Quick Preview for SoundCloud Quick Preview for SoundCloud
ID lghceigagnfccdnkpdfbbhjjegijbjmp
Официальный URL https://chromewebstore.google.com/detail/quick-preview-for-soundcl/lghceigagnfccdnkpdfbbhjjegijbjmp
Описание Hover the ▶️ Button to Preview Music on SoundCloud
Размер файла 68.22 KB
Количество установок 202
Текущая Версия 2.0.1
Последнее Обновление 2019-01-28
Дата публикации 2019-01-28
Рейтинг 4.25/5 Всего 4 оценок
Разработчик https://mattias.lol
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/Hemmingsson/Quick-Preview/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Preview for SoundCloud",
    "version": "2.0.1",
    "manifest_version": 2,
    "description": "Hover the \u25b6\ufe0f Button to Preview Music on SoundCloud",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/quick-preview-for-soundcl\/lghceigagnfccdnkpdfbbhjjegijbjmp",
    "author": "Mattias Hemmingsson",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/soundCloud.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/icon32.png",
        "default_title": "Quick Preview for SoundCloud",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundCloud.com\/*"
            ],
            "css": [
                "inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/soundCloud.com\/*"
            ],
            "js": [
                "inject\/sentinel.min.js"
            ]
        },
        {
            "matches": [
                "https:\/\/soundCloud.com\/*"
            ],
            "js": [
                "inject\/inject.js"
            ]
        }
    ]
}