You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
how to find remote-settings data: storage > indexed DB > chrome > remote-settings > records,
How to filter for records ("Filter Items"). Note the list is lazy loaded. So filtering only works on what's been loaded. Is there a better, more UX friendly way than scrolling through the list to force load?
Notes for using dev tools
Why isn't my collection listed? The Collection list is lazy. A collection won't show up until the remote-settings client has been called by some feature's code. To do it manually:
In the browser toolbox > console , ChromeUtils.import("resource://services-settings/remote-settings.js").RemoteSettings("ms-language-packs")
refresh the remote-settings dev tools page, the collection should be in the list now
How to clear all local data (using dev tools), and confirming it (using browser toolbox)
The text was updated successfully, but these errors were encountered:
Place holder for notes as I had to do this recently.
ChromeUtils.import("resource://services-settings/remote-settings.js").RemoteSettings("ms-language-packs")
The text was updated successfully, but these errors were encountered: