Open in Chordify for YouTube Music™
Adds a button to open a song in Chordify for YouTube Music™.
Vad är Open in Chordify for YouTube Music™?
Open in Chordify for YouTube Music™ är en Chrome-tillägg utvecklad av https://austincoleman.dev, och dess huvudfunktion är "Adds a button to open a song in Chordify for YouTube Music™.".
Tilläggsskärmbilder
Ladda ner Open in Chordify for YouTube Music™-förlängningens CRX-fil
Ladda ner Open in Chordify for YouTube 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
This extension makes it easier to open songs in Chordify directly from YouTube Music™, rather than manually copying and pasting the URL.
Chordify.net is a website that turns songs into chords. YouTube Music™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions. Grundläggande Information om Tillägg
| Namn | |
| ID | efdbgeighcgfdlbmgnagndlpjccihpdl |
| Officiell webbadress | https://chromewebstore.google.com/detail/open-in-chordify-for-yout/efdbgeighcgfdlbmgnagndlpjccihpdl |
| Beskrivning | Adds a button to open a song in Chordify for YouTube Music™. |
| Filstorlek | 12.96 KB |
| Antal Installationer | 129 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-05-05 |
| Publiceringsdatum | 2023-05-05 |
| Utvecklare | https://austincoleman.dev |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/AustinMichaelColeman/open-in-chordify |
| Hjälpsida URL | https://github.com/AustinMichaelColeman/open-in-chordify/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Open in Chordify for YouTube Music\u2122",
"version": "1.0",
"manifest_version": 3,
"description": "Adds a button to open a song in Chordify for YouTube Music\u2122.",
"host_permissions": [
"https:\/\/music.youtube.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/music.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "open-in-chordify-16.png",
"48": "open-in-chordify-48.png",
"128": "open-in-chordify-128.png"
}
} | |