Reviews for Lyrics Here by Rob W
Lyrics Here by Rob W by Rob W
Review by GetBroccli
Rated 5 out of 5
by GetBroccli, 7 years agoBest 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.
Developer response
posted 7 years agoThe 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
}
});