├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── dist ├── icons │ ├── 128x128.png │ ├── 48x48.png │ └── 64x64.png ├── manifest.json ├── options.css ├── options.html ├── popup.css └── popup.html ├── jest.config.ts ├── package.json ├── preview.png ├── src ├── Stylesheet.ts ├── SuperCSSInject.ts ├── common │ └── If.tsx ├── options │ ├── Options.tsx │ ├── OptionsReducer.test.ts │ ├── OptionsReducer.ts │ ├── components │ │ ├── ConfigModal.tsx │ │ ├── EditModal.tsx │ │ ├── StylesheetForm.tsx │ │ ├── StylesheetItemTableRow.tsx │ │ └── StylesheetListTable.tsx │ └── index.tsx ├── popup │ ├── Popup.tsx │ ├── PopupEmptyMessage.tsx │ ├── PopupHeader.tsx │ ├── PopupPreferences.tsx │ ├── PopupReducer.test.ts │ ├── PopupReducer.ts │ ├── PopupSearch.tsx │ ├── StylesheetItem.tsx │ ├── StylesheetList.tsx │ └── index.tsx ├── storage.ts ├── types.d.ts ├── utils.ts └── worker │ └── background.ts ├── tsconfig.json ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/README.md -------------------------------------------------------------------------------- /dist/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/icons/128x128.png -------------------------------------------------------------------------------- /dist/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/icons/48x48.png -------------------------------------------------------------------------------- /dist/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/icons/64x64.png -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /dist/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/options.css -------------------------------------------------------------------------------- /dist/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/options.html -------------------------------------------------------------------------------- /dist/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/popup.css -------------------------------------------------------------------------------- /dist/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/dist/popup.html -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/package.json -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/preview.png -------------------------------------------------------------------------------- /src/Stylesheet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/Stylesheet.ts -------------------------------------------------------------------------------- /src/SuperCSSInject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/SuperCSSInject.ts -------------------------------------------------------------------------------- /src/common/If.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/common/If.tsx -------------------------------------------------------------------------------- /src/options/Options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/Options.tsx -------------------------------------------------------------------------------- /src/options/OptionsReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/OptionsReducer.test.ts -------------------------------------------------------------------------------- /src/options/OptionsReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/OptionsReducer.ts -------------------------------------------------------------------------------- /src/options/components/ConfigModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/components/ConfigModal.tsx -------------------------------------------------------------------------------- /src/options/components/EditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/components/EditModal.tsx -------------------------------------------------------------------------------- /src/options/components/StylesheetForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/components/StylesheetForm.tsx -------------------------------------------------------------------------------- /src/options/components/StylesheetItemTableRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/components/StylesheetItemTableRow.tsx -------------------------------------------------------------------------------- /src/options/components/StylesheetListTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/components/StylesheetListTable.tsx -------------------------------------------------------------------------------- /src/options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/options/index.tsx -------------------------------------------------------------------------------- /src/popup/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/Popup.tsx -------------------------------------------------------------------------------- /src/popup/PopupEmptyMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/PopupEmptyMessage.tsx -------------------------------------------------------------------------------- /src/popup/PopupHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/PopupHeader.tsx -------------------------------------------------------------------------------- /src/popup/PopupPreferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/PopupPreferences.tsx -------------------------------------------------------------------------------- /src/popup/PopupReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/PopupReducer.test.ts -------------------------------------------------------------------------------- /src/popup/PopupReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/PopupReducer.ts -------------------------------------------------------------------------------- /src/popup/PopupSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/PopupSearch.tsx -------------------------------------------------------------------------------- /src/popup/StylesheetItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/StylesheetItem.tsx -------------------------------------------------------------------------------- /src/popup/StylesheetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/StylesheetList.tsx -------------------------------------------------------------------------------- /src/popup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/popup/index.tsx -------------------------------------------------------------------------------- /src/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/storage.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/worker/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/src/worker/background.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nelsonr/super-css-inject/HEAD/webpack.prod.js --------------------------------------------------------------------------------