Chord Transposer
An extension that allows you to transpose chords.
Chord Transposer क्या है?
Chord Transposer Domenico Gemoli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that allows you to transpose chords."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chord Transposer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A chrome extension that allows you to transpose chords on any website. Transposing is the act of converting a song into a different key. You might want to do it to find a key that works better with your voice, or simply to choose a version of the song that has chords that are easier for you to play. Currently, it only works on websites with Italian chords (Do, Re, Mi etc..) and converts them into English chords so that transposition is possible. Inspired by the "transpose" functionality on the Ultimate Guitar website. Tested on these websites: http://www.mbutozone.it http://psicoaccordi.blogspot.it How to use: - Visit a web page that contains chords - Wait for the page to load and click on the extension icon in the top right of the browser - Click 'select chords' and then click on the lyrics on the web page - Click on the extension icon and click 'enable'. This will convert the chords to links - Click on the extension icon and click '+' or '-' to transpose - Click on a converted chord to remove (in case part of the lyrics were converted by mistake)
एक्सटेंशन की मूल जानकारी
नाम | Chord Transposer |
ID | paieadgemondfnehhihefldfgaaeofne |
आधिकारिक URL | https://chromewebstore.google.com/detail/chord-transposer/paieadgemondfnehhihefldfgaaeofne |
विवरण | An extension that allows you to transpose chords. |
फ़ाइल का आकार | 67.67 KB |
स्थापना संख्या | 1,490 |
वर्तमान संस्करण | 1.1.0 |
अंतिम अपडेट | 2023-12-06 |
प्रकाशन तिथि | 2017-01-04 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | Domenico Gemoli |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/aberonni/Chord-Transposer-Extension |
सहायता पृष्ठ URL | https://github.com/aberonni/Chord-Transposer-Extension/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chord Transposer", "version": "1.1.0", "description": "An extension that allows you to transpose chords.", "action": { "default_title": "Chord Transposer", "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "author": "Domenico Gemoli", "background": { "service_worker": "scripts\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/content.js" ], "css": [ "styles\/content.css" ], "run_at": "document_end", "all_frames": false } ], "homepage_url": "https:\/\/github.com\/aberonni\/Chord-Transposer-Extension", "offline_enabled": true } |