├── .gitignore ├── LICENSE ├── LICENSE.sortable_js ├── README.md ├── Sortable.js ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json ├── fr │ └── messages.json ├── it │ └── messages.json └── pl │ └── messages.json ├── background.html ├── background.js ├── identitypopup ├── popup.css ├── popup.html └── popup.js ├── makexpi.sh ├── manifest.json ├── modules ├── bordercolorsapi.js ├── identities.js └── options.js ├── onboarding ├── changes.html ├── configuration-light.png ├── identitychooser-bordercolors-integration.png ├── identitychooser-dark.png ├── identitychooser-light.png ├── onboarding.html └── styles.css ├── options ├── options.css ├── options.html └── options.js └── styles └── theming.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.sortable_js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/LICENSE.sortable_js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/README.md -------------------------------------------------------------------------------- /Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/Sortable.js -------------------------------------------------------------------------------- /_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/_locales/de/messages.json -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/fr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/_locales/fr/messages.json -------------------------------------------------------------------------------- /_locales/it/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/_locales/it/messages.json -------------------------------------------------------------------------------- /_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/_locales/pl/messages.json -------------------------------------------------------------------------------- /background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/background.html -------------------------------------------------------------------------------- /background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/background.js -------------------------------------------------------------------------------- /identitypopup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/identitypopup/popup.css -------------------------------------------------------------------------------- /identitypopup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/identitypopup/popup.html -------------------------------------------------------------------------------- /identitypopup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/identitypopup/popup.js -------------------------------------------------------------------------------- /makexpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/makexpi.sh -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/manifest.json -------------------------------------------------------------------------------- /modules/bordercolorsapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/modules/bordercolorsapi.js -------------------------------------------------------------------------------- /modules/identities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/modules/identities.js -------------------------------------------------------------------------------- /modules/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/modules/options.js -------------------------------------------------------------------------------- /onboarding/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/onboarding/changes.html -------------------------------------------------------------------------------- /onboarding/configuration-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/onboarding/configuration-light.png -------------------------------------------------------------------------------- /onboarding/identitychooser-bordercolors-integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/onboarding/identitychooser-bordercolors-integration.png -------------------------------------------------------------------------------- /onboarding/identitychooser-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/onboarding/identitychooser-dark.png -------------------------------------------------------------------------------- /onboarding/identitychooser-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/onboarding/identitychooser-light.png -------------------------------------------------------------------------------- /onboarding/onboarding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/onboarding/onboarding.html -------------------------------------------------------------------------------- /onboarding/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/onboarding/styles.css -------------------------------------------------------------------------------- /options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/options/options.css -------------------------------------------------------------------------------- /options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/options/options.html -------------------------------------------------------------------------------- /options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/options/options.js -------------------------------------------------------------------------------- /styles/theming.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedball2001/identitychooser-mx/HEAD/styles/theming.css --------------------------------------------------------------------------------