Tocando agora (beta)
Extension to notify what song/video is playing on Deezer, YouTube, Spotify, Google Play Music or YouTube Music.
Что такое Tocando agora (beta)?
Tocando agora (beta) - это расширение Chrome, разработанное Fernando Migliorini Tenório, и его основная функция - "Extension to notify what song/video is playing on Deezer, YouTube, Spotify, Google Play Music or YouTube Music.".
Снимки экрана расширения
Скачать файл CRX расширения Tocando agora (beta)
Скачайте файлы расширений Tocando agora (beta) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
obs.: Recommended use with "Key Socket Media Keys" (https://goo.gl/XCIzG4) Основная информация о расширении
| Название | |
| ID | ahlldljeehledjbbpfeklndmlkinhmfg |
| Официальный URL | https://chromewebstore.google.com/detail/tocando-agora-beta/ahlldljeehledjbbpfeklndmlkinhmfg |
| Описание | Extension to notify what song/video is playing on Deezer, YouTube, Spotify, Google Play Music or YouTube Music. |
| Размер файла | 587 KB |
| Количество установок | 145 |
| Текущая Версия | 1.7.21 |
| Последнее Обновление | 2018-09-26 |
| Дата публикации | 2018-09-26 |
| Рейтинг | 4.00/5 Всего 3 оценок |
| Разработчик | Fernando Migliorini Tenório |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | http://dotenorio.github.io/tocando_agora/ |
| URL страницы помощи | https://github.com/dotenorio/tocando_agora/issues |
| URL страницы политики конфиденциальности | https://gist.github.com/dotenorio/edec4dbc0e14da6f0d49.html |
| Поддерживаемые языки | en,pt-BR |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tocando agora (beta)",
"version": "1.7.21",
"default_locale": "pt_BR",
"description": "__MSG_extDescription__",
"background": {
"scripts": [
"assets\/lib\/async\/dist\/async.min.js",
"assets\/js\/utils.js",
"assets\/js\/background.js"
],
"persistent": false
},
"permissions": [
"tabs",
"notifications",
"*:\/\/*.deezer.com\/*",
"*:\/\/*.youtube.com\/*",
"*:\/\/*.spotify.com\/*",
"*:\/\/play.google.com\/music\/*",
"*:\/\/music.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.deezer.com\/*",
"*:\/\/*.youtube.com\/*",
"*:\/\/*.spotify.com\/*",
"*:\/\/play.google.com\/music\/*",
"*:\/\/music.youtube.com\/*"
],
"js": [
"assets\/js\/utils.js",
"assets\/js\/observer.js"
]
}
],
"icons": {
"128": "assets\/img\/icon_extension.png"
},
"page_action": {
"default_icon": "assets\/img\/icon_pageaction_active.png",
"default_title": "Tocando agora (beta)"
},
"commands": {
"tocando-agora": {
"suggested_key": {
"default": "Ctrl+Shift+Y"
},
"description": "__MSG_cmdTocandoAgoraDesc__",
"global": true
}
},
"author": "Fernando Migliorini Ten\u00f3rio",
"short_name": "Tocando agora",
"homepage_url": "https:\/\/github.com\/dotenorio\/tocando_agora"
} | |