Check It Out(Beta)
tests dankness of songs
Что такое Check It Out(Beta)?
Check It Out(Beta) - это расширение Chrome, разработанное auryanratliff, и его основная функция - "tests dankness of songs".
Снимки экрана расширения
Скачать файл CRX расширения Check It Out(Beta)
Скачайте файлы расширений Check It Out(Beta) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
!!!!!!!!!!!THIS APP IS CURRENTLY IN BETA AND HAS MANY ISSUES!!!!!!!!!!!!!!!!!! Check it out is a plug-in for Soundcloud that marks the best songs on your stream so you can skip the clutter and get to the best music. If you have any problems leave them in the comments. COLOR RATING SYSTEM: yellow = good Green = Better Red = Best Upcoming features: - login to get a personalized song ratings - remove bad songs - more themes - custom colors
Основная информация о расширении
Название | Check It Out(Beta) |
ID | gipacegobniobecjhicebalppagclfgl |
Официальный URL | https://chromewebstore.google.com/detail/check-it-outbeta/gipacegobniobecjhicebalppagclfgl |
Описание | tests dankness of songs |
Размер файла | 158 KB |
Количество установок | 35 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-10-07 |
Дата публикации | 2014-10-07 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | auryanratliff |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Check It Out(Beta)", "description": "tests dankness of songs", "version": "1.0", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/soundcloud.com\/*", "https:\/\/soundcloud.com\/*" ], "js": [ "jquery.min.js", "soundcloudsdk.js", "myscript.js", "soundcloud.player.api.js" ], "css": [ "mystyles.css" ] } ], "background": { "scripts": [ "background.js", "jquery.min.js" ] }, "web_accessible_resources": [ "icon.png" ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" } } |