Recenzje dodatku Lyrics Here by Rob W
Lyrics Here by Rob W Autor: Rob W
126 recenzji
- Ocena: 5/5Autor: Użytkownik Firefoksa 13978833, 8 lat temu
- Ocena: 3/5Autor: leonlionjr, 8 lat temuNeed to be able to grab lyrics from underground to that main stream stuff
- Ocena: 5/5Autor: Użytkownik Firefoksa 13485978, 8 lat temu
- Ocena: 5/5Autor: Faisal Reza, 8 lat temuWorks like charm. And the dev is very quick in responsing user feedback.
- Ocena: 5/5Autor: Użytkownik Firefoksa 10462711, 8 lat temuFantastic extension - thank you!
On Firefox for Android you need to "Request Desktop site" for it to work.
[also make certain that "m." has disappeared from the beginning of the URL] - Ocena: 5/5Autor: Hemal, 8 lat temuLove this. I can never understand lyrics and am always looking for lyrics
- Ocena: 5/5Autor: Użytkownik Firefoksa 13848586, 8 lat temuNote to NoScript Users : if you disable "fetch" in the default presets of NoScript settings, it will block EVERY REQUEST made by LyricsHere extension.
Other than that, the extension is everything I ever dreamed of when listening to music on my browser :D
Thanks a lot Rob W for your help and patience in troubleshooting my case !Odpowiedź autora
Data: 8 lat temuWhen I trigger a search for your first example, I do immediately get a result from the first source (using the default settings): https://i.imgur.com/WfP6oaZ.png
If you don't see any results, then access to the sources may be blocked (e.g. by the network adminstrator). Follow up by mail and provide more information if you want help. - Ocena: 2/5Autor: Użytkownik Firefoksa 12790937, 8 lat temuUPDATE: years later, it sadly no longer works very well at all... But if you change your setting so that it no longer searches lyrics sites, it will set up a google query that will automate searching the song, artist and word "lyrics"... popping up in another browser tab. But it simply no longer finds lyrics on the most important lyrics sites, or less important ones for that matter. Thank you for a great run! Everything decays......
I love this application.
I have used this extension for a long time and find it very, very good. When you go to a supported website, a little box opens and a search for lyrics begins within that box (which is where the lyrics will appear, if they are found at any of innumerable sites on the web.
Better yet, the developer has been consistently conscientious in maintaining the extension.... despite the fact that they must have a day job too! Thank you for this..... Thank you for this work of art you have made! - Ocena: 5/5Autor: bitelse, 8 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 13774700, 8 lat temu
- Ocena: 4/5Autor: MRSMOJORISIN, 8 lat temu
- Ocena: 5/5Autor: GetBroccli, 8 lat temuBest lyrics addon. I had a small problem dragging sources into the order I want them searched tho, issue fixed itself in the process of writing this review LOL. Wishing there was some way around it, idk, like a config file or something. Might already be one. Hopefully dev stays interested in this project, there aren't enough lite weight web apps around these days.
Odpowiedź autora
Data: 8 lat temuThe project is currently in maintenance-only mode because it is basically finished and I have other priorities (most of the updates are about modifying the set of supported sources).
There is no officially supported way to import/export via a config file, but you could use the developer tools of the browser to directly read / modify the preferences.
To debug an extension, see the guide at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Debugging
After opening a debugger for the extension's background page via about:debugging (see the above link), you can interact with the storage via the chrome.storage.local API, as documented at https://developer.mozilla.org/en-US/Add-ons/WebExtensions/API/storage/local
For example, to convert the storage to something that you can copy and paste in a file, run the following from the debugger's console:
chrome.storage.local.get(null, items => {
console.log( JSON.stringify(items, null, 4) );
});
You can then manually edit the configuration in the file (at your own risk), and save the changes back as follows:
chrome.storage.local.set();
For example:
chrome.storage.local.set({
"panelOffsets.youtube": {
"top": 100,
"right": 204,
"width": 275,
"maxHeight": 600
}
}); - Ocena: 5/5Autor: JuAnXT, 8 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 12859410, 9 lat temu
- Ocena: 5/5Autor: Hoang PHam, 9 lat temu
- Ocena: 5/5Autor: Doms1364, 9 lat temu
- Ocena: 5/5Autor: Audrian, 9 lat temuReally good extension, Is there a way to remove the "Lyrics here" button from a YT video? I know you could hide it by ctrl+click, but honestly it would be way better if we could just remove it, there's already one available from the address bar, so it is kinda annoying it sticking out on not-music videos.
Edit: Since you attended my request, editing it to 5-star.
Thanks for your attention. <3Odpowiedź autora
Data: 9 lat temuI have published an update (3.14.1) which allows you to permanently hide the in-page button.
To disable the button in the page, right-click on the extension button in the address bar and toggle the "Show Lyrics Here button in the page." menu item (this instruction also appears in the tooltip of the in-page Lyrics Here button). - Ocena: 5/5Autor: Użytkownik Firefoksa 13528784, 9 lat temu
- Ocena: 4/5Autor: Użytkownik Firefoksa 13528586, 9 lat temuscrollable size , auto search on no. of sources
but is not showing lyrics of punjabi songs - Ocena: 5/5Autor: Użytkownik Firefoksa 13516080, 9 lat temu
- Ocena: 5/5Autor: Użytkownik Firefoksa 13488308, 9 lat temuGood Job! THX a lot!
My wish, if U can, configurable font-weight would be fine! Keep on ;)Odpowiedź autora
Data: 9 lat temufont-weight sounds a bit too specialized to warrant a dedicated option.
You can use a user style manager such as Stylish to change the font-weight of the elements if you wish. Almost every significant element in my panel has a recognizable class name that you can select with CSS. These class names can be found by right-clicking on the lyrics panel and choosing Inspect element (to open Firefox's developer tools).