Lyrics Here by Rob W 的评价
Lyrics Here by Rob W 作者: Rob W
Rob W 的回应
开发者回应
发布于 7 年前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
}
});
125 条评价
- 评分 5 / 5来自 退出党团队远离中共邪教, 1 天前
- 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 / 5来自 远离中共邪教快退出党团队, 2 个月前
- 评分 1 / 5来自 Nazmul Hossain, 3 个月前
- 评分 5 / 5来自 Eduardo Henrique, 2 年前
- 评分 5 / 5来自 Eitan Adler, 2 年前
- 评分 5 / 5来自 Consciusness, 2 年前
- 评分 5 / 5来自 Rufous Potoo, 2 年前
- 评分 1 / 5来自 Firefox 用户 14637194, 3 年前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, 3 年前
- 评分 5 / 5来自 Firefox 用户 13958746, 3 年前
- 评分 1 / 5来自 Firefox 用户 13532216, 4 年前Does not work Spotify. Manual search works, but does not pick up playing songs automatically.
- 评分 5 / 5来自 Firefox 用户 16960155, 4 年前
- 评分 5 / 5来自 Firefox 用户 16956470, 4 年前
开发者回应
发布于 4 年前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.