├── .gitignore ├── .web-extension-id ├── DEVELOP.md ├── LICENSE.txt ├── README.md ├── branding ├── amo_button.png ├── icon.afdesign ├── manager_add_screenshot.png ├── manager_home_screenshot.png └── popup_screenshot.png ├── package.json ├── public ├── icons │ └── icon.svg ├── img │ └── avatars │ │ ├── LICENSE.txt │ │ ├── modern_cros_100 │ │ ├── SOURCE.txt │ │ ├── avatar_anonymous.png │ │ ├── avatar_bee.png │ │ ├── avatar_bicycle.png │ │ ├── avatar_bokeh.png │ │ ├── avatar_briefcase.png │ │ ├── avatar_cat.png │ │ ├── avatar_chess.png │ │ ├── avatar_circles.png │ │ ├── avatar_cloud.png │ │ ├── avatar_coffee.png │ │ ├── avatar_cupcake.png │ │ ├── avatar_day.png │ │ ├── avatar_dragonfly.png │ │ ├── avatar_flower.png │ │ ├── avatar_frog.png │ │ ├── avatar_ganzania.png │ │ ├── avatar_globe.png │ │ ├── avatar_hotair.png │ │ ├── avatar_jackrussellterrier.png │ │ ├── avatar_jellyfish.png │ │ ├── avatar_kiwi.png │ │ ├── avatar_ladybug.png │ │ ├── avatar_leaf.png │ │ ├── avatar_night.png │ │ ├── avatar_penguin.png │ │ ├── avatar_plane.png │ │ ├── avatar_rainbowfish.png │ │ ├── avatar_recordplayer.png │ │ ├── avatar_robot_body.png │ │ ├── avatar_robot_head.png │ │ ├── avatar_toolbox.png │ │ ├── avatar_upsidedown.png │ │ ├── avatar_user_color.png │ │ └── avatar_user_enterprise.png │ │ ├── modern_cros_200 │ │ ├── SOURCE.txt │ │ ├── abstract │ │ │ ├── avatar_avocado.png │ │ │ ├── avatar_cappuccino.png │ │ │ ├── avatar_icecream.png │ │ │ ├── avatar_icewater.png │ │ │ ├── avatar_melon.png │ │ │ ├── avatar_onigiri.png │ │ │ ├── avatar_pizza.png │ │ │ └── avatar_sandwich.png │ │ ├── geo │ │ │ ├── avatar_geo1.png │ │ │ ├── avatar_geo2.png │ │ │ ├── avatar_geo3.png │ │ │ ├── avatar_geo4.png │ │ │ └── avatar_geo5.png │ │ ├── illustration │ │ │ ├── avatar_basketball.png │ │ │ ├── avatar_bike.png │ │ │ ├── avatar_bird.png │ │ │ ├── avatar_cheese.png │ │ │ ├── avatar_football.png │ │ │ ├── avatar_ramen.png │ │ │ ├── avatar_sunglasses.png │ │ │ ├── avatar_sushi.png │ │ │ ├── avatar_tamagotchi.png │ │ │ └── avatar_vinyl.png │ │ ├── imaginary │ │ │ ├── avatar_botanist.png │ │ │ ├── avatar_burger.png │ │ │ ├── avatar_graduate.png │ │ │ ├── avatar_guitar.png │ │ │ ├── avatar_instant_camera.png │ │ │ ├── avatar_lion.png │ │ │ ├── avatar_planet.png │ │ │ ├── avatar_robot.png │ │ │ ├── avatar_sneaker.png │ │ │ ├── avatar_van.png │ │ │ ├── avatar_watermelon.png │ │ │ └── avatar_waving.png │ │ ├── material_design │ │ │ ├── avatar_artist.png │ │ │ ├── avatar_biking.png │ │ │ ├── avatar_bookworm.png │ │ │ ├── avatar_dog_wagging_tail.png │ │ │ ├── avatar_gamer.png │ │ │ ├── avatar_nurse.png │ │ │ ├── avatar_person_daydreaming.png │ │ │ ├── avatar_person_doing_taichi.png │ │ │ ├── avatar_person_in_snow.png │ │ │ ├── avatar_person_watering_plants.png │ │ │ ├── avatar_person_with_cats.png │ │ │ ├── avatar_person_with_coffee.png │ │ │ ├── avatar_person_with_flowers.png │ │ │ ├── avatar_person_with_megaphone.png │ │ │ └── avatar_signing_thankyou.png │ │ └── origami │ │ │ ├── avatar_butterflies.png │ │ │ ├── avatar_cat.png │ │ │ ├── avatar_corgi.png │ │ │ ├── avatar_dragon.png │ │ │ ├── avatar_elephant.png │ │ │ ├── avatar_fox.png │ │ │ ├── avatar_monkey.png │ │ │ ├── avatar_panda.png │ │ │ ├── avatar_penguin.png │ │ │ ├── avatar_pinkbutterfly.png │ │ │ ├── avatar_rabbit.png │ │ │ ├── avatar_redbutterfly.png │ │ │ ├── avatar_snail.png │ │ │ └── avatar_unicorn.png │ │ ├── modern_cros_200_original │ │ ├── SOURCE.txt │ │ ├── abstract │ │ │ ├── avatar_avocado.png │ │ │ ├── avatar_cappuccino.png │ │ │ ├── avatar_icecream.png │ │ │ ├── avatar_icewater.png │ │ │ ├── avatar_melon.png │ │ │ ├── avatar_onigiri.png │ │ │ ├── avatar_pizza.png │ │ │ └── avatar_sandwich.png │ │ ├── geo │ │ │ ├── avatar_geo1.png │ │ │ ├── avatar_geo2.png │ │ │ ├── avatar_geo3.png │ │ │ ├── avatar_geo4.png │ │ │ └── avatar_geo5.png │ │ ├── illustration │ │ │ ├── avatar_basketball.png │ │ │ ├── avatar_bike.png │ │ │ ├── avatar_bird.png │ │ │ ├── avatar_cheese.png │ │ │ ├── avatar_football.png │ │ │ ├── avatar_ramen.png │ │ │ ├── avatar_sunglasses.png │ │ │ ├── avatar_sushi.png │ │ │ ├── avatar_tamagotchi.png │ │ │ └── avatar_vinyl.png │ │ ├── imaginary │ │ │ ├── avatar_botanist.png │ │ │ ├── avatar_burger.png │ │ │ ├── avatar_graduate.png │ │ │ ├── avatar_guitar.png │ │ │ ├── avatar_instant_camera.png │ │ │ ├── avatar_lion.png │ │ │ ├── avatar_planet.png │ │ │ ├── avatar_robot.png │ │ │ ├── avatar_sneaker.png │ │ │ ├── avatar_van.png │ │ │ ├── avatar_watermelon.png │ │ │ └── avatar_waving.png │ │ ├── material_design │ │ │ ├── avatar_artist.png │ │ │ ├── avatar_biking.png │ │ │ ├── avatar_bookworm.png │ │ │ ├── avatar_dog_wagging_tail.png │ │ │ ├── avatar_gamer.png │ │ │ ├── avatar_nurse.png │ │ │ ├── avatar_person_daydreaming.png │ │ │ ├── avatar_person_doing_taichi.png │ │ │ ├── avatar_person_in_snow.png │ │ │ ├── avatar_person_watering_plants.png │ │ │ ├── avatar_person_with_cats.png │ │ │ ├── avatar_person_with_coffee.png │ │ │ ├── avatar_person_with_flowers.png │ │ │ ├── avatar_person_with_megaphone.png │ │ │ └── avatar_signing_thankyou.png │ │ └── origami │ │ │ ├── avatar_butterflies.png │ │ │ ├── avatar_cat.png │ │ │ ├── avatar_corgi.png │ │ │ ├── avatar_dragon.png │ │ │ ├── avatar_elephant.png │ │ │ ├── avatar_fox.png │ │ │ ├── avatar_monkey.png │ │ │ ├── avatar_panda.png │ │ │ ├── avatar_penguin.png │ │ │ ├── avatar_pinkbutterfly.png │ │ │ ├── avatar_rabbit.png │ │ │ ├── avatar_redbutterfly.png │ │ │ ├── avatar_snail.png │ │ │ └── avatar_unicorn.png │ │ ├── modern_cros_data.xml │ │ ├── old │ │ ├── SOURCE.txt │ │ ├── profile_avatar_alien.png │ │ ├── profile_avatar_awesome.png │ │ ├── profile_avatar_burger.png │ │ ├── profile_avatar_businessman.png │ │ ├── profile_avatar_cat.png │ │ ├── profile_avatar_cupcake.png │ │ ├── profile_avatar_dog.png │ │ ├── profile_avatar_flower.png │ │ ├── profile_avatar_generic.png │ │ ├── profile_avatar_generic_aqua.png │ │ ├── profile_avatar_generic_blue.png │ │ ├── profile_avatar_generic_green.png │ │ ├── profile_avatar_generic_orange.png │ │ ├── profile_avatar_generic_purple.png │ │ ├── profile_avatar_generic_red.png │ │ ├── profile_avatar_generic_yellow.png │ │ ├── profile_avatar_horse.png │ │ ├── profile_avatar_margarita.png │ │ ├── profile_avatar_ninja.png │ │ ├── profile_avatar_note.png │ │ ├── profile_avatar_pizza.png │ │ ├── profile_avatar_secret_agent.png │ │ ├── profile_avatar_soccer.png │ │ ├── profile_avatar_sun_cloud.png │ │ ├── profile_avatar_superhero.png │ │ └── profile_avatar_volley_ball.png │ │ ├── old_data.xml │ │ ├── old_original │ │ ├── SOURCE.txt │ │ ├── profile_avatar_alien.png │ │ ├── profile_avatar_awesome.png │ │ ├── profile_avatar_burger.png │ │ ├── profile_avatar_businessman.png │ │ ├── profile_avatar_cat.png │ │ ├── profile_avatar_cupcake.png │ │ ├── profile_avatar_dog.png │ │ ├── profile_avatar_flower.png │ │ ├── profile_avatar_generic.png │ │ ├── profile_avatar_generic_aqua.png │ │ ├── profile_avatar_generic_blue.png │ │ ├── profile_avatar_generic_green.png │ │ ├── profile_avatar_generic_orange.png │ │ ├── profile_avatar_generic_purple.png │ │ ├── profile_avatar_generic_red.png │ │ ├── profile_avatar_generic_yellow.png │ │ ├── profile_avatar_horse.png │ │ ├── profile_avatar_margarita.png │ │ ├── profile_avatar_ninja.png │ │ ├── profile_avatar_note.png │ │ ├── profile_avatar_pizza.png │ │ ├── profile_avatar_secret_agent.png │ │ ├── profile_avatar_soccer.png │ │ ├── profile_avatar_sun_cloud.png │ │ ├── profile_avatar_superhero.png │ │ └── profile_avatar_volley_ball.png │ │ └── resize-old.sh └── scripts │ └── winfocus.js ├── src ├── assets │ ├── add-white.svg │ ├── avatarlist │ │ ├── avatarlist.json │ │ └── gen-avatarlist.main.kts │ ├── copy-white.svg │ ├── delete-white.svg │ ├── edit-white.svg │ ├── firefox.svg │ ├── list.svg │ ├── playlist-add-white.svg │ └── settings-gray.svg ├── entries │ ├── background │ │ └── main.ts │ ├── contentScript │ │ ├── primary │ │ │ ├── App.svelte │ │ │ └── main.ts │ │ └── renderContent.ts │ ├── manager │ │ ├── App.svelte │ │ ├── components │ │ │ ├── bottombar │ │ │ │ └── BottomBar.svelte │ │ │ ├── editor │ │ │ │ ├── AvatarPictureOption.svelte │ │ │ │ ├── EditButton.svelte │ │ │ │ ├── PictureList.svelte │ │ │ │ ├── ProfileEditor.svelte │ │ │ │ └── avatar.ts │ │ │ ├── manager.ts │ │ │ ├── options │ │ │ │ └── OptionsEditor.svelte │ │ │ ├── popup │ │ │ │ ├── PopupEditor.svelte │ │ │ │ ├── PopupEditorWrapper.svelte │ │ │ │ └── popup.ts │ │ │ └── profilelist │ │ │ │ ├── ProfileCard.svelte │ │ │ │ ├── ProfileList.svelte │ │ │ │ ├── ProfileListInPopupEditor.svelte │ │ │ │ ├── profilelist.css │ │ │ │ └── profilelist.ts │ │ ├── index.html │ │ ├── main.ts │ │ └── main │ │ │ ├── Manager.svelte │ │ │ └── ManagerPage.svelte │ ├── options │ │ ├── App.svelte │ │ ├── index.html │ │ └── main.ts │ ├── popup │ │ ├── App.svelte │ │ ├── components │ │ │ ├── in-editor-blackout.css │ │ │ ├── popup.ts │ │ │ ├── popupcontent │ │ │ │ ├── PopupContent.svelte │ │ │ │ ├── PopupContentRenderer.svelte │ │ │ │ ├── PopupContentRendererInEditor.svelte │ │ │ │ ├── PopupEntryInEditor.svelte │ │ │ │ ├── popupcontent.css │ │ │ │ └── search.ts │ │ │ ├── popupheader │ │ │ │ └── PopupHeader.svelte │ │ │ └── warning │ │ │ │ └── Warning.svelte │ │ ├── index.html │ │ ├── main.ts │ │ ├── main │ │ │ ├── Popup.svelte │ │ │ └── PopupInEditor.svelte │ │ └── popupeditor.ts │ ├── setup │ │ ├── App.svelte │ │ ├── components │ │ │ ├── button │ │ │ │ └── DownloadButton.svelte │ │ │ ├── compileinstructions │ │ │ │ └── CompileInstructions.svelte │ │ │ ├── display │ │ │ │ ├── Arch.svelte │ │ │ │ └── OS.svelte │ │ │ ├── homeinstallscript │ │ │ │ ├── HomeInstallScript.svelte │ │ │ │ └── homeinstall.ts │ │ │ └── instructions │ │ │ │ ├── InstructionsAndroid.svelte │ │ │ │ ├── InstructionsBSD.svelte │ │ │ │ ├── InstructionsChromeOS.svelte │ │ │ │ ├── InstructionsLinux.svelte │ │ │ │ ├── InstructionsMac.svelte │ │ │ │ └── InstructionsWin.svelte │ │ ├── index.html │ │ ├── main.ts │ │ └── main │ │ │ ├── Setup.svelte │ │ │ └── state.ts │ ├── update │ │ ├── App.svelte │ │ ├── index.html │ │ ├── main.ts │ │ └── main │ │ │ ├── Update.svelte │ │ │ └── style.ts │ └── winfocus │ │ └── index.html ├── lib │ ├── MainContent.svelte │ ├── common.ts │ ├── components │ │ ├── button │ │ │ ├── Button.svelte │ │ │ └── button.ts │ │ ├── card │ │ │ └── Card.svelte │ │ ├── highlight │ │ │ └── HighlightTheme.svelte │ │ ├── input │ │ │ ├── Input.svelte │ │ │ └── InputLabel.svelte │ │ ├── loader │ │ │ ├── Dimmer.svelte │ │ │ └── Loader.svelte │ │ ├── util │ │ │ ├── Hoverable.svelte │ │ │ ├── SvelteBodyOnMouseEnter.svelte │ │ │ └── WarnUnsavedChanges.svelte │ │ └── windowhash │ │ │ └── WindowHash.svelte │ ├── model │ │ └── profiles.ts │ ├── native.ts │ └── util │ │ ├── anim.ts │ │ ├── assets.ts │ │ ├── compare.ts │ │ ├── dom.ts │ │ ├── drag.ts │ │ ├── toast.ts │ │ ├── transition.ts │ │ ├── typed-context.ts │ │ └── types.ts ├── manifest.ts └── vite-env.d.ts ├── svelte.config.js ├── tsconfig.json ├── vite.config.ts └── web-ext-config.cjs /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | .DS_Store 4 | /web-ext-artifacts 5 | /.idea -------------------------------------------------------------------------------- /.web-extension-id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/.web-extension-id -------------------------------------------------------------------------------- /DEVELOP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/DEVELOP.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/README.md -------------------------------------------------------------------------------- /branding/amo_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/branding/amo_button.png -------------------------------------------------------------------------------- /branding/icon.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/branding/icon.afdesign -------------------------------------------------------------------------------- /branding/manager_add_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/branding/manager_add_screenshot.png -------------------------------------------------------------------------------- /branding/manager_home_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/branding/manager_home_screenshot.png -------------------------------------------------------------------------------- /branding/popup_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/branding/popup_screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/package.json -------------------------------------------------------------------------------- /public/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/icons/icon.svg -------------------------------------------------------------------------------- /public/img/avatars/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/LICENSE.txt -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/SOURCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/SOURCE.txt -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_anonymous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_anonymous.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_bee.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_bicycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_bicycle.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_bokeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_bokeh.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_briefcase.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_cat.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_chess.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_circles.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_cloud.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_coffee.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_cupcake.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_day.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_dragonfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_dragonfly.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_flower.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_frog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_frog.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_ganzania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_ganzania.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_globe.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_hotair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_hotair.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_jackrussellterrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_jackrussellterrier.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_jellyfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_jellyfish.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_kiwi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_kiwi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_ladybug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_ladybug.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_leaf.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_night.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_penguin.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_plane.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_rainbowfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_rainbowfish.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_recordplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_recordplayer.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_robot_body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_robot_body.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_robot_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_robot_head.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_toolbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_toolbox.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_upsidedown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_upsidedown.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_user_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_user_color.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_100/avatar_user_enterprise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_100/avatar_user_enterprise.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/SOURCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/SOURCE.txt -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_avocado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_avocado.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_cappuccino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_cappuccino.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_icecream.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_icewater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_icewater.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_melon.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_onigiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_onigiri.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_pizza.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/abstract/avatar_sandwich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/abstract/avatar_sandwich.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/geo/avatar_geo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/geo/avatar_geo1.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/geo/avatar_geo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/geo/avatar_geo2.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/geo/avatar_geo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/geo/avatar_geo3.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/geo/avatar_geo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/geo/avatar_geo4.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/geo/avatar_geo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/geo/avatar_geo5.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_basketball.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_bike.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_bird.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_cheese.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_football.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_football.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_ramen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_ramen.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_sunglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_sunglasses.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_sushi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_tamagotchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_tamagotchi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/illustration/avatar_vinyl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/illustration/avatar_vinyl.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_botanist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_botanist.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_burger.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_graduate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_graduate.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_guitar.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_instant_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_instant_camera.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_lion.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_planet.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_robot.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_sneaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_sneaker.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_van.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_van.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_watermelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_watermelon.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/imaginary/avatar_waving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/imaginary/avatar_waving.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_artist.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_biking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_biking.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_bookworm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_bookworm.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_dog_wagging_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_dog_wagging_tail.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_gamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_gamer.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_nurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_nurse.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_daydreaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_daydreaming.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_doing_taichi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_doing_taichi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_in_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_in_snow.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_watering_plants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_watering_plants.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_with_cats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_with_cats.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_with_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_with_coffee.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_with_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_with_flowers.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_person_with_megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_person_with_megaphone.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/material_design/avatar_signing_thankyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/material_design/avatar_signing_thankyou.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_butterflies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_butterflies.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_cat.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_corgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_corgi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_dragon.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_elephant.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_fox.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_monkey.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_panda.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_penguin.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_pinkbutterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_pinkbutterfly.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_rabbit.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_redbutterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_redbutterfly.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_snail.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200/origami/avatar_unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200/origami/avatar_unicorn.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/SOURCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/SOURCE.txt -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_avocado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_avocado.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_cappuccino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_cappuccino.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_icecream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_icecream.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_icewater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_icewater.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_melon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_melon.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_onigiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_onigiri.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_pizza.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/abstract/avatar_sandwich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/abstract/avatar_sandwich.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/geo/avatar_geo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/geo/avatar_geo1.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/geo/avatar_geo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/geo/avatar_geo2.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/geo/avatar_geo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/geo/avatar_geo3.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/geo/avatar_geo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/geo/avatar_geo4.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/geo/avatar_geo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/geo/avatar_geo5.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_basketball.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_bike.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_bird.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_cheese.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_football.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_football.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_ramen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_ramen.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_sunglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_sunglasses.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_sushi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_tamagotchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_tamagotchi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/illustration/avatar_vinyl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/illustration/avatar_vinyl.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_botanist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_botanist.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_burger.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_graduate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_graduate.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_guitar.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_instant_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_instant_camera.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_lion.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_planet.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_robot.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_sneaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_sneaker.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_van.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_van.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_watermelon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_watermelon.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/imaginary/avatar_waving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/imaginary/avatar_waving.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_artist.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_biking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_biking.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_bookworm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_bookworm.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_dog_wagging_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_dog_wagging_tail.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_gamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_gamer.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_nurse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_nurse.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_daydreaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_daydreaming.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_doing_taichi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_doing_taichi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_in_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_in_snow.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_watering_plants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_watering_plants.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_cats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_cats.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_coffee.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_flowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_flowers.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_person_with_megaphone.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/material_design/avatar_signing_thankyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/material_design/avatar_signing_thankyou.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_butterflies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_butterflies.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_cat.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_corgi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_corgi.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_dragon.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_elephant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_elephant.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_fox.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_monkey.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_panda.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_penguin.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_pinkbutterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_pinkbutterfly.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_rabbit.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_redbutterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_redbutterfly.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_snail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_snail.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_200_original/origami/avatar_unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_200_original/origami/avatar_unicorn.png -------------------------------------------------------------------------------- /public/img/avatars/modern_cros_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/modern_cros_data.xml -------------------------------------------------------------------------------- /public/img/avatars/old/SOURCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/SOURCE.txt -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_alien.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_awesome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_awesome.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_burger.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_businessman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_businessman.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_cat.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_cupcake.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_dog.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_flower.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic_aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic_aqua.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic_blue.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic_green.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic_orange.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic_purple.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic_red.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_generic_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_generic_yellow.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_horse.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_margarita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_margarita.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_ninja.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_note.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_pizza.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_secret_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_secret_agent.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_soccer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_soccer.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_sun_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_sun_cloud.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_superhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_superhero.png -------------------------------------------------------------------------------- /public/img/avatars/old/profile_avatar_volley_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old/profile_avatar_volley_ball.png -------------------------------------------------------------------------------- /public/img/avatars/old_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_data.xml -------------------------------------------------------------------------------- /public/img/avatars/old_original/SOURCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/SOURCE.txt -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_alien.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_awesome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_awesome.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_burger.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_businessman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_businessman.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_cat.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_cupcake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_cupcake.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_dog.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_flower.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic_aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic_aqua.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic_blue.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic_green.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic_orange.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic_purple.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic_red.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_generic_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_generic_yellow.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_horse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_horse.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_margarita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_margarita.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_ninja.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_note.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_pizza.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_secret_agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_secret_agent.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_soccer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_soccer.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_sun_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_sun_cloud.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_superhero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_superhero.png -------------------------------------------------------------------------------- /public/img/avatars/old_original/profile_avatar_volley_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/old_original/profile_avatar_volley_ball.png -------------------------------------------------------------------------------- /public/img/avatars/resize-old.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/public/img/avatars/resize-old.sh -------------------------------------------------------------------------------- /public/scripts/winfocus.js: -------------------------------------------------------------------------------- 1 | window.close(); -------------------------------------------------------------------------------- /src/assets/add-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/add-white.svg -------------------------------------------------------------------------------- /src/assets/avatarlist/avatarlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/avatarlist/avatarlist.json -------------------------------------------------------------------------------- /src/assets/avatarlist/gen-avatarlist.main.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/avatarlist/gen-avatarlist.main.kts -------------------------------------------------------------------------------- /src/assets/copy-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/copy-white.svg -------------------------------------------------------------------------------- /src/assets/delete-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/delete-white.svg -------------------------------------------------------------------------------- /src/assets/edit-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/edit-white.svg -------------------------------------------------------------------------------- /src/assets/firefox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/firefox.svg -------------------------------------------------------------------------------- /src/assets/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/list.svg -------------------------------------------------------------------------------- /src/assets/playlist-add-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/playlist-add-white.svg -------------------------------------------------------------------------------- /src/assets/settings-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/assets/settings-gray.svg -------------------------------------------------------------------------------- /src/entries/background/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/background/main.ts -------------------------------------------------------------------------------- /src/entries/contentScript/primary/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/contentScript/primary/App.svelte -------------------------------------------------------------------------------- /src/entries/contentScript/primary/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/contentScript/primary/main.ts -------------------------------------------------------------------------------- /src/entries/contentScript/renderContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/contentScript/renderContent.ts -------------------------------------------------------------------------------- /src/entries/manager/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/App.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/bottombar/BottomBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/bottombar/BottomBar.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/editor/AvatarPictureOption.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/editor/AvatarPictureOption.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/editor/EditButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/editor/EditButton.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/editor/PictureList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/editor/PictureList.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/editor/ProfileEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/editor/ProfileEditor.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/editor/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/editor/avatar.ts -------------------------------------------------------------------------------- /src/entries/manager/components/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/manager.ts -------------------------------------------------------------------------------- /src/entries/manager/components/options/OptionsEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/options/OptionsEditor.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/popup/PopupEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/popup/PopupEditor.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/popup/PopupEditorWrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/popup/PopupEditorWrapper.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/popup/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/popup/popup.ts -------------------------------------------------------------------------------- /src/entries/manager/components/profilelist/ProfileCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/profilelist/ProfileCard.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/profilelist/ProfileList.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/profilelist/ProfileList.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/profilelist/ProfileListInPopupEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/profilelist/ProfileListInPopupEditor.svelte -------------------------------------------------------------------------------- /src/entries/manager/components/profilelist/profilelist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/profilelist/profilelist.css -------------------------------------------------------------------------------- /src/entries/manager/components/profilelist/profilelist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/components/profilelist/profilelist.ts -------------------------------------------------------------------------------- /src/entries/manager/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/index.html -------------------------------------------------------------------------------- /src/entries/manager/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/main.ts -------------------------------------------------------------------------------- /src/entries/manager/main/Manager.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/main/Manager.svelte -------------------------------------------------------------------------------- /src/entries/manager/main/ManagerPage.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/manager/main/ManagerPage.svelte -------------------------------------------------------------------------------- /src/entries/options/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/options/App.svelte -------------------------------------------------------------------------------- /src/entries/options/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/options/index.html -------------------------------------------------------------------------------- /src/entries/options/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/options/main.ts -------------------------------------------------------------------------------- /src/entries/popup/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/App.svelte -------------------------------------------------------------------------------- /src/entries/popup/components/in-editor-blackout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/in-editor-blackout.css -------------------------------------------------------------------------------- /src/entries/popup/components/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popup.ts -------------------------------------------------------------------------------- /src/entries/popup/components/popupcontent/PopupContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popupcontent/PopupContent.svelte -------------------------------------------------------------------------------- /src/entries/popup/components/popupcontent/PopupContentRenderer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popupcontent/PopupContentRenderer.svelte -------------------------------------------------------------------------------- /src/entries/popup/components/popupcontent/PopupContentRendererInEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popupcontent/PopupContentRendererInEditor.svelte -------------------------------------------------------------------------------- /src/entries/popup/components/popupcontent/PopupEntryInEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popupcontent/PopupEntryInEditor.svelte -------------------------------------------------------------------------------- /src/entries/popup/components/popupcontent/popupcontent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popupcontent/popupcontent.css -------------------------------------------------------------------------------- /src/entries/popup/components/popupcontent/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popupcontent/search.ts -------------------------------------------------------------------------------- /src/entries/popup/components/popupheader/PopupHeader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/popupheader/PopupHeader.svelte -------------------------------------------------------------------------------- /src/entries/popup/components/warning/Warning.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/components/warning/Warning.svelte -------------------------------------------------------------------------------- /src/entries/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/index.html -------------------------------------------------------------------------------- /src/entries/popup/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/main.ts -------------------------------------------------------------------------------- /src/entries/popup/main/Popup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/main/Popup.svelte -------------------------------------------------------------------------------- /src/entries/popup/main/PopupInEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/main/PopupInEditor.svelte -------------------------------------------------------------------------------- /src/entries/popup/popupeditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/popup/popupeditor.ts -------------------------------------------------------------------------------- /src/entries/setup/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/App.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/button/DownloadButton.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/button/DownloadButton.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/compileinstructions/CompileInstructions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/compileinstructions/CompileInstructions.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/display/Arch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/display/Arch.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/display/OS.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/display/OS.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/homeinstallscript/HomeInstallScript.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/homeinstallscript/HomeInstallScript.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/homeinstallscript/homeinstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/homeinstallscript/homeinstall.ts -------------------------------------------------------------------------------- /src/entries/setup/components/instructions/InstructionsAndroid.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/instructions/InstructionsAndroid.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/instructions/InstructionsBSD.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/instructions/InstructionsBSD.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/instructions/InstructionsChromeOS.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/instructions/InstructionsChromeOS.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/instructions/InstructionsLinux.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/instructions/InstructionsLinux.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/instructions/InstructionsMac.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/instructions/InstructionsMac.svelte -------------------------------------------------------------------------------- /src/entries/setup/components/instructions/InstructionsWin.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/components/instructions/InstructionsWin.svelte -------------------------------------------------------------------------------- /src/entries/setup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/index.html -------------------------------------------------------------------------------- /src/entries/setup/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/main.ts -------------------------------------------------------------------------------- /src/entries/setup/main/Setup.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/main/Setup.svelte -------------------------------------------------------------------------------- /src/entries/setup/main/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/setup/main/state.ts -------------------------------------------------------------------------------- /src/entries/update/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/update/App.svelte -------------------------------------------------------------------------------- /src/entries/update/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/update/index.html -------------------------------------------------------------------------------- /src/entries/update/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/update/main.ts -------------------------------------------------------------------------------- /src/entries/update/main/Update.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/update/main/Update.svelte -------------------------------------------------------------------------------- /src/entries/update/main/style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/update/main/style.ts -------------------------------------------------------------------------------- /src/entries/winfocus/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/entries/winfocus/index.html -------------------------------------------------------------------------------- /src/lib/MainContent.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/MainContent.svelte -------------------------------------------------------------------------------- /src/lib/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/common.ts -------------------------------------------------------------------------------- /src/lib/components/button/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/button/Button.svelte -------------------------------------------------------------------------------- /src/lib/components/button/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/button/button.ts -------------------------------------------------------------------------------- /src/lib/components/card/Card.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/card/Card.svelte -------------------------------------------------------------------------------- /src/lib/components/highlight/HighlightTheme.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/highlight/HighlightTheme.svelte -------------------------------------------------------------------------------- /src/lib/components/input/Input.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/input/Input.svelte -------------------------------------------------------------------------------- /src/lib/components/input/InputLabel.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/input/InputLabel.svelte -------------------------------------------------------------------------------- /src/lib/components/loader/Dimmer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/loader/Dimmer.svelte -------------------------------------------------------------------------------- /src/lib/components/loader/Loader.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/loader/Loader.svelte -------------------------------------------------------------------------------- /src/lib/components/util/Hoverable.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/util/Hoverable.svelte -------------------------------------------------------------------------------- /src/lib/components/util/SvelteBodyOnMouseEnter.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/util/SvelteBodyOnMouseEnter.svelte -------------------------------------------------------------------------------- /src/lib/components/util/WarnUnsavedChanges.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/util/WarnUnsavedChanges.svelte -------------------------------------------------------------------------------- /src/lib/components/windowhash/WindowHash.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/components/windowhash/WindowHash.svelte -------------------------------------------------------------------------------- /src/lib/model/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/model/profiles.ts -------------------------------------------------------------------------------- /src/lib/native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/native.ts -------------------------------------------------------------------------------- /src/lib/util/anim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/anim.ts -------------------------------------------------------------------------------- /src/lib/util/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/assets.ts -------------------------------------------------------------------------------- /src/lib/util/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/compare.ts -------------------------------------------------------------------------------- /src/lib/util/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/dom.ts -------------------------------------------------------------------------------- /src/lib/util/drag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/drag.ts -------------------------------------------------------------------------------- /src/lib/util/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/toast.ts -------------------------------------------------------------------------------- /src/lib/util/transition.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/util/typed-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/typed-context.ts -------------------------------------------------------------------------------- /src/lib/util/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/lib/util/types.ts -------------------------------------------------------------------------------- /src/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/manifest.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/vite.config.ts -------------------------------------------------------------------------------- /web-ext-config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-dev/firefox-profile-switcher/HEAD/web-ext-config.cjs --------------------------------------------------------------------------------