Youtube to Google Music
Adds button to youtube pages to search for song in google music
Что такое Youtube to Google Music?
Youtube to Google Music - это расширение Chrome, разработанное jrmurray, и его основная функция - "Adds button to youtube pages to search for song in google music".
Снимки экрана расширения
Скачать файл CRX расширения Youtube to Google Music
Скачайте файлы расширений Youtube to Google Music в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simple extension that adds a button to youtube videos that will open a new tab of google music with the song title searched. Основная информация о расширении
| Название | |
| ID | dcoljlfaeahfnjgeajeakopfgpaoadmc |
| Официальный URL | https://chromewebstore.google.com/detail/youtube-to-google-music/dcoljlfaeahfnjgeajeakopfgpaoadmc |
| Описание | Adds button to youtube pages to search for song in google music |
| Размер файла | 13.59 KB |
| Количество установок | 743 |
| Текущая Версия | 0.1 |
| Последнее Обновление | 2016-10-05 |
| Дата публикации | 2016-10-04 |
| Рейтинг | 2.83/5 Всего 6 оценок |
| Разработчик | jrmurray |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Youtube to Google Music",
"version": "0.1",
"manifest_version": 2,
"description": "Adds button to youtube pages to search for song in google music",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"tabs",
"https:\/\/www.youtube.com\/watch?v=*",
"http:\/\/www.youtube.com\/watch?v=*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/watch?v=*",
"http:\/\/www.youtube.com\/watch?v=*"
],
"css": [
"inject\/inject.css"
]
},
{
"matches": [
"https:\/\/www.youtube.com\/watch?v=*",
"http:\/\/www.youtube.com\/watch?v=*"
],
"js": [
"inject\/inject.js"
]
}
]
} | |