Lyrics Here by Rob W のレビュー
Lyrics Here by Rob W 作成者: Rob W
GetBroccli によるレビュー
5 段階中 5 の評価
GetBroccli によるレビュー (8年前)Best 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.
開発者の返信
投稿日時: 8年前The 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
}
});
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
}
});
合計レビュー数: 126
- This extension works, but it can be really slow to find lyrics, and will fail to find them if the title isn't (Artist) - (Song). Sometimes this title is reversed, but the main problem with this is that when youtube adds music, they have only the name of the song in the title and the artist as the account name.
- 5 段階中 1 の評価Nazmul Hossain によるレビュー (1年前)
- 5 段階中 5 の評価Eduardo Henrique によるレビュー (3年前)
- 5 段階中 5 の評価Eitan Adler によるレビュー (3年前)
- 5 段階中 5 の評価Consciusness によるレビュー (3年前)
- 5 段階中 5 の評価Rufous Potoo によるレビュー (3年前)
- 5 段階中 1 の評価Firefox ユーザー 14637194 によるレビュー (4年前)Doesn't work on YouTube for some reason. Either doesn't find anything or wrong lyrics, even tho a manual search on enabled sources does show they have the lyrics I'm looking for.
Haven't tried on Spotify. Iirc it worked fine on chromium but not here apparently. - 5 段階中 5 の評価Firefox ユーザー 17450909 によるレビュー (4年前)
- 5 段階中 5 の評価Firefox ユーザー 13958746 によるレビュー (4年前)
- 5 段階中 1 の評価Firefox ユーザー 13532216 によるレビュー (5年前)Does not work Spotify. Manual search works, but does not pick up playing songs automatically.
- 5 段階中 5 の評価Firefox ユーザー 16960155 によるレビュー (5年前)
- 5 段階中 5 の評価Firefox ユーザー 16956470 によるレビュー (5年前)
開発者の返信
投稿日時: 5年前I have fixed many of the issues, but am waiting for time to add support for YouTube Music before publishing a new update. Thanks for your patience.