├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .env.example ├── .github └── workflows │ ├── build.yml │ ├── pr-closed.yml │ ├── pr-title.yml │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── .vscode └── extensions.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── PromoTile-1400x560.png ├── PromoTile-440x280.png ├── PromoTile-920x680.png ├── chrome-web-store.png ├── example-dark.png ├── example-light.png ├── firefox-addons.png ├── logo.png ├── screenshot-dark.png └── screenshot-light.png ├── biome.jsonc ├── commitlint.config.js ├── logo.png ├── logo.svg ├── package.json ├── renovate.json ├── scripts ├── build-icons.ts ├── build-languages.ts ├── build-src.ts ├── update-manifest-version.ts └── update-upstream-version.ts ├── src ├── custom │ └── folder-symlink.svg ├── extensionIcons │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-32.png │ └── icon-48.png ├── injected-styles.css ├── lib │ ├── custom-providers.ts │ ├── icon-sizes.ts │ ├── replace-icon.ts │ ├── replace-icons.ts │ └── user-config.ts ├── logo.svg ├── main.ts ├── manifests │ ├── base.json │ ├── chrome-edge.json │ └── firefox.json ├── models │ ├── index.ts │ ├── provider.ts │ └── providerCustomMapping.ts ├── providers │ ├── azure.ts │ ├── bitbucket.ts │ ├── forgejo.ts │ ├── gitea.ts │ ├── gitee.ts │ ├── github.ts │ ├── gitlab.ts │ ├── index.ts │ └── sourceforge.ts └── ui │ ├── options │ ├── api │ │ ├── domains.ts │ │ ├── icons.ts │ │ └── language-ids.ts │ ├── components │ │ ├── confirm-dialog.tsx │ │ ├── domain-actions.tsx │ │ ├── domain-name.tsx │ │ ├── domain-settings.tsx │ │ ├── icon-settings │ │ │ ├── binding-input-controls.tsx │ │ │ ├── file-icon-bindings.tsx │ │ │ ├── folder-icon-bindings.tsx │ │ │ ├── icon-binding-controls.tsx │ │ │ ├── icon-preview.tsx │ │ │ ├── icon-settings-dialog.tsx │ │ │ └── language-icon-bindings.tsx │ │ └── main.tsx │ ├── options.css │ ├── options.html │ ├── options.tsx │ └── types │ │ └── binding-control-props.ts │ ├── popup │ ├── api │ │ ├── access.ts │ │ ├── helper.ts │ │ ├── page-state.ts │ │ └── provider.ts │ ├── components │ │ ├── add-provider.tsx │ │ ├── ask-for-access.tsx │ │ ├── domain-settings.tsx │ │ ├── loading-spinner.tsx │ │ ├── main.tsx │ │ └── not-supported.tsx │ ├── settings-popup.css │ ├── settings-popup.html │ └── settings-popup.tsx │ └── shared │ ├── domain-settings-controls.tsx │ ├── footer.tsx │ ├── info-popover.tsx │ ├── logo.tsx │ ├── theme.ts │ └── utils.ts └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # Github token is used for scripts/build-languages.ts 2 | GITHUB_TOKEN= 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-closed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.github/workflows/pr-closed.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.npmrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/README.md -------------------------------------------------------------------------------- /assets/PromoTile-1400x560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/PromoTile-1400x560.png -------------------------------------------------------------------------------- /assets/PromoTile-440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/PromoTile-440x280.png -------------------------------------------------------------------------------- /assets/PromoTile-920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/PromoTile-920x680.png -------------------------------------------------------------------------------- /assets/chrome-web-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/chrome-web-store.png -------------------------------------------------------------------------------- /assets/example-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/example-dark.png -------------------------------------------------------------------------------- /assets/example-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/example-light.png -------------------------------------------------------------------------------- /assets/firefox-addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/firefox-addons.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/screenshot-dark.png -------------------------------------------------------------------------------- /assets/screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/assets/screenshot-light.png -------------------------------------------------------------------------------- /biome.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/biome.jsonc -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/build-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/scripts/build-icons.ts -------------------------------------------------------------------------------- /scripts/build-languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/scripts/build-languages.ts -------------------------------------------------------------------------------- /scripts/build-src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/scripts/build-src.ts -------------------------------------------------------------------------------- /scripts/update-manifest-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/scripts/update-manifest-version.ts -------------------------------------------------------------------------------- /scripts/update-upstream-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/scripts/update-upstream-version.ts -------------------------------------------------------------------------------- /src/custom/folder-symlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/custom/folder-symlink.svg -------------------------------------------------------------------------------- /src/extensionIcons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/extensionIcons/icon-128.png -------------------------------------------------------------------------------- /src/extensionIcons/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/extensionIcons/icon-16.png -------------------------------------------------------------------------------- /src/extensionIcons/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/extensionIcons/icon-32.png -------------------------------------------------------------------------------- /src/extensionIcons/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/extensionIcons/icon-48.png -------------------------------------------------------------------------------- /src/injected-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/injected-styles.css -------------------------------------------------------------------------------- /src/lib/custom-providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/lib/custom-providers.ts -------------------------------------------------------------------------------- /src/lib/icon-sizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/lib/icon-sizes.ts -------------------------------------------------------------------------------- /src/lib/replace-icon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/lib/replace-icon.ts -------------------------------------------------------------------------------- /src/lib/replace-icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/lib/replace-icons.ts -------------------------------------------------------------------------------- /src/lib/user-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/lib/user-config.ts -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifests/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/manifests/base.json -------------------------------------------------------------------------------- /src/manifests/chrome-edge.json: -------------------------------------------------------------------------------- 1 | { 2 | "optional_host_permissions": ["*://*/*"] 3 | } 4 | -------------------------------------------------------------------------------- /src/manifests/firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/manifests/firefox.json -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/models/provider.ts -------------------------------------------------------------------------------- /src/models/providerCustomMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/models/providerCustomMapping.ts -------------------------------------------------------------------------------- /src/providers/azure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/azure.ts -------------------------------------------------------------------------------- /src/providers/bitbucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/bitbucket.ts -------------------------------------------------------------------------------- /src/providers/forgejo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/forgejo.ts -------------------------------------------------------------------------------- /src/providers/gitea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/gitea.ts -------------------------------------------------------------------------------- /src/providers/gitee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/gitee.ts -------------------------------------------------------------------------------- /src/providers/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/github.ts -------------------------------------------------------------------------------- /src/providers/gitlab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/gitlab.ts -------------------------------------------------------------------------------- /src/providers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/index.ts -------------------------------------------------------------------------------- /src/providers/sourceforge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/providers/sourceforge.ts -------------------------------------------------------------------------------- /src/ui/options/api/domains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/api/domains.ts -------------------------------------------------------------------------------- /src/ui/options/api/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/api/icons.ts -------------------------------------------------------------------------------- /src/ui/options/api/language-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/api/language-ids.ts -------------------------------------------------------------------------------- /src/ui/options/components/confirm-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/confirm-dialog.tsx -------------------------------------------------------------------------------- /src/ui/options/components/domain-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/domain-actions.tsx -------------------------------------------------------------------------------- /src/ui/options/components/domain-name.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/domain-name.tsx -------------------------------------------------------------------------------- /src/ui/options/components/domain-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/domain-settings.tsx -------------------------------------------------------------------------------- /src/ui/options/components/icon-settings/binding-input-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/icon-settings/binding-input-controls.tsx -------------------------------------------------------------------------------- /src/ui/options/components/icon-settings/file-icon-bindings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/icon-settings/file-icon-bindings.tsx -------------------------------------------------------------------------------- /src/ui/options/components/icon-settings/folder-icon-bindings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/icon-settings/folder-icon-bindings.tsx -------------------------------------------------------------------------------- /src/ui/options/components/icon-settings/icon-binding-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/icon-settings/icon-binding-controls.tsx -------------------------------------------------------------------------------- /src/ui/options/components/icon-settings/icon-preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/icon-settings/icon-preview.tsx -------------------------------------------------------------------------------- /src/ui/options/components/icon-settings/icon-settings-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/icon-settings/icon-settings-dialog.tsx -------------------------------------------------------------------------------- /src/ui/options/components/icon-settings/language-icon-bindings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/icon-settings/language-icon-bindings.tsx -------------------------------------------------------------------------------- /src/ui/options/components/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/components/main.tsx -------------------------------------------------------------------------------- /src/ui/options/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/options.css -------------------------------------------------------------------------------- /src/ui/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/options.html -------------------------------------------------------------------------------- /src/ui/options/options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/options.tsx -------------------------------------------------------------------------------- /src/ui/options/types/binding-control-props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/options/types/binding-control-props.ts -------------------------------------------------------------------------------- /src/ui/popup/api/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/api/access.ts -------------------------------------------------------------------------------- /src/ui/popup/api/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/api/helper.ts -------------------------------------------------------------------------------- /src/ui/popup/api/page-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/api/page-state.ts -------------------------------------------------------------------------------- /src/ui/popup/api/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/api/provider.ts -------------------------------------------------------------------------------- /src/ui/popup/components/add-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/components/add-provider.tsx -------------------------------------------------------------------------------- /src/ui/popup/components/ask-for-access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/components/ask-for-access.tsx -------------------------------------------------------------------------------- /src/ui/popup/components/domain-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/components/domain-settings.tsx -------------------------------------------------------------------------------- /src/ui/popup/components/loading-spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/components/loading-spinner.tsx -------------------------------------------------------------------------------- /src/ui/popup/components/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/components/main.tsx -------------------------------------------------------------------------------- /src/ui/popup/components/not-supported.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/components/not-supported.tsx -------------------------------------------------------------------------------- /src/ui/popup/settings-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/settings-popup.css -------------------------------------------------------------------------------- /src/ui/popup/settings-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/settings-popup.html -------------------------------------------------------------------------------- /src/ui/popup/settings-popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/popup/settings-popup.tsx -------------------------------------------------------------------------------- /src/ui/shared/domain-settings-controls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/shared/domain-settings-controls.tsx -------------------------------------------------------------------------------- /src/ui/shared/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/shared/footer.tsx -------------------------------------------------------------------------------- /src/ui/shared/info-popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/shared/info-popover.tsx -------------------------------------------------------------------------------- /src/ui/shared/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/shared/logo.tsx -------------------------------------------------------------------------------- /src/ui/shared/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/shared/theme.ts -------------------------------------------------------------------------------- /src/ui/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/src/ui/shared/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/material-extensions/material-icons-browser-extension/HEAD/tsconfig.json --------------------------------------------------------------------------------