Youtube to Google Music
Adds button to youtube pages to search for song in google music
Vad är Youtube to Google Music?
Youtube to Google Music är en Chrome-tillägg utvecklad av jrmurray, och dess huvudfunktion är "Adds button to youtube pages to search for song in google music".
Tilläggsskärmbilder
Ladda ner Youtube to Google Music-förlängningens CRX-fil
Ladda ner Youtube to Google Music-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Simple extension that adds a button to youtube videos that will open a new tab of google music with the song title searched. Grundläggande Information om Tillägg
| Namn | |
| ID | dcoljlfaeahfnjgeajeakopfgpaoadmc |
| Officiell webbadress | https://chromewebstore.google.com/detail/youtube-to-google-music/dcoljlfaeahfnjgeajeakopfgpaoadmc |
| Beskrivning | Adds button to youtube pages to search for song in google music |
| Filstorlek | 13.59 KB |
| Antal Installationer | 743 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2016-10-05 |
| Publiceringsdatum | 2016-10-04 |
| Betyg | 2.83/5 Totalt 6 Betyg |
| Utvecklare | jrmurray |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
}
]
} | |