Where are the extension button locations stored?
I'm wondering where the buttons for extensions/add-ons have their locations stored? I.e. I might have a tab-renamer extension button on one row, and firefox relay, privacy mode, and adblocker on another row. Obviously what row and what positions in the row the buttons occupy(relative index perhaps) are stored, but where?
Wybrane rozwiązanie
Normally the toolbar customization is stored in the browser.uiCustomization.state pref that you can inspect on the about:config page.
This pref stores its data in JSON format, so you can possibly save this data in a file and open this file in a tab.
Przeczytaj tę odpowiedź w całym kontekście 👍 1Wszystkie odpowiedzi (2)
Wybrane rozwiązanie
Normally the toolbar customization is stored in the browser.uiCustomization.state pref that you can inspect on the about:config page.
This pref stores its data in JSON format, so you can possibly save this data in a file and open this file in a tab.
Thank you very much!