sindresorhus/refined-github



The issue has been closed
Support exporting and importing the extension’s features configuration #2726
thibaudcolas posted onGitHub
I’d like to have a way to save the settings of the extension (whether features are enabled or not), and ideally also a way to load saved settings back. For me this would be useful to:
- Sync the extension’s settings between my two installations – one on Chrome stable, one on Canary. Currently I have to do this manually, which feels more tedious than it could be considering the number of features.
- Have a backup. While all of my extension’s settings are saved with Chrome’s sync feature, I’d also like to have an offline backup (e.g. in a dotfiles repository, where I store configuration for my IDE / terminal / etc).
- Share my config with coworkers / others. Like people share snippets of JSON config for VS Code.
Example URL:
I think this would live under the extension’s options modal: chrome://extensions/?options=hlepfoohegkhhmjieoechaddaejaokhf
.
For implementation, I think this could either be:
- A pair of "Save configuration" and "Load configuration" buttons, which save (and prompt for) a JSON file with key-value pairs for all the features. Potentially JSON5 with the features’ descriptions as comments. Or any other key-value format.
- Inspired by VS Code settings, a toggle to switch between the current features checkboxes UI, and a JSON version of it. Then exporting/importing the config would just be a matter of copy-paste.