SpotifySearch
Spotify search button below each video in YouTube
O que é SpotifySearch?
SpotifySearch é uma extensão do Chrome desenvolvida por sajpo, e sua principal característica é "Spotify search button below each video in YouTube".
Baixar o arquivo CRX da Extensão SpotifySearch
Baixe arquivos de extensão SpotifySearch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Open any music video in YouTube and click on SpotifySearch icon below the player to search the same song in Spotify! You can also use the search tool from a context menu - just select any text, right-click on it and choose: "Search...". Informações Básicas da Extensão
| Nome | |
| ID | bkpidekpgpjkekmgijomcokafajpfebi |
| URL Oficial | https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi |
| Descrição | Spotify search button below each video in YouTube |
| Tamanho do Arquivo | 34.46 KB |
| Contagem de Instalações | 38 |
| Versão Atual | 1.3 |
| Última Atualização | 2017-10-02 |
| Data de Publicação | 2017-10-02 |
| Classificação | 5.00/5 Total de 2 Avaliações |
| Desenvolvedor | sajpo |
| Tipo de Pagamento | free |
| Idiomas Suportados | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "SpotifySearch",
"description": "Spotify search button below each video in YouTube",
"version": "1.3",
"short_name": "SpotifySearch",
"author": "Sajpo",
"browser_action": {
"default_icon": {
"16": "icon.png"
}
},
"permissions": [
"activeTab",
"contextMenus"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"autorun.js"
]
}
],
"icons": {
"128": "icon.png"
},
"background": {
"scripts": [
"contextMenu.js"
]
}
} | |