SpotifYoutube
Adds a button in Youtube that creates a new tab with Spotify.
Что такое SpotifYoutube?
SpotifYoutube - это расширение Chrome, разработанное mariannelinharesm, и его основная функция - "Adds a button in Youtube that creates a new tab with Spotify.".
Снимки экрана расширения
Скачать файл CRX расширения SpotifYoutube
Скачайте файлы расширений SpotifYoutube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
SpotifYoutube is a chrome extension that connects youtube with spotify through a button that allows users to go to music videos from Youtube to musics, albums or bands in Spotify.
Project: https://github.com/mari-linhares/spotifyoutube
Like it? Show support in Chrome Web Store and also in the project repository.
Bugs? Report here: https://github.com/mari-linhares/spotifyoutube/issues Основная информация о расширении
| Название | |
| ID | ankphgpmnicdkehhmnklhlodkfkecjbh |
| Официальный URL | https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh |
| Описание | Adds a button in Youtube that creates a new tab with Spotify. |
| Размер файла | 45.4 KB |
| Количество установок | 213 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2016-09-16 |
| Дата публикации | 2016-09-16 |
| Рейтинг | 4.57/5 Всего 7 оценок |
| Разработчик | mariannelinharesm |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/mari-linhares/spotifyoutube/ |
| URL страницы помощи | https://github.com/mari-linhares/spotifyoutube/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "SpotifYoutube",
"version": "1.0.1",
"homepage_url": "https:\/\/github.com\/mari-linhares\/spotifyoutube",
"manifest_version": 2,
"description": "Adds a button in Youtube that creates a new tab with Spotify.",
"icons": {
"16": "icons\/icon.png",
"48": "icons\/icon.png",
"128": "icons\/icon.png"
},
"browser_action": {
"default_icon": "icons\/icon.png",
"default_title": "Spotify button on youtube"
},
"background": {
"page": "src\/background\/background.html",
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/*.youtube.com\/*"
],
"css": [
"src\/script\/script.css"
],
"js": [
"src\/libs\/jquery.js",
"src\/script\/script.js"
]
}
],
"permissions": [
"tabs",
"https:\/\/*.youtube.com\/*"
],
"web_accessible_resources": [
"src\/images\/*.png"
]
} | |