├── .eslintrc.cjs ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── README_zh.md ├── docs └── imgs │ ├── screenshot_1.jpg │ └── screenshot_2.jpg ├── options.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── icon_128.png ├── icon_16.png ├── icon_48.png └── manifest.json ├── sidepanel.html ├── src ├── assets │ └── logo_v.png ├── component │ └── MargicSearch.jsx ├── option.css ├── option.jsx ├── service_worker.js ├── sidepanel.css ├── sidepanel.jsx └── utils │ ├── utils.js │ └── websidetest.js ├── tailwind.config.js └── vite.config.js /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/README_zh.md -------------------------------------------------------------------------------- /docs/imgs/screenshot_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/docs/imgs/screenshot_1.jpg -------------------------------------------------------------------------------- /docs/imgs/screenshot_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/docs/imgs/screenshot_2.jpg -------------------------------------------------------------------------------- /options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/options.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/public/icon_128.png -------------------------------------------------------------------------------- /public/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/public/icon_16.png -------------------------------------------------------------------------------- /public/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/public/icon_48.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/public/manifest.json -------------------------------------------------------------------------------- /sidepanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/sidepanel.html -------------------------------------------------------------------------------- /src/assets/logo_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/assets/logo_v.png -------------------------------------------------------------------------------- /src/component/MargicSearch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/component/MargicSearch.jsx -------------------------------------------------------------------------------- /src/option.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/option.css -------------------------------------------------------------------------------- /src/option.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/option.jsx -------------------------------------------------------------------------------- /src/service_worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/service_worker.js -------------------------------------------------------------------------------- /src/sidepanel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/sidepanel.css -------------------------------------------------------------------------------- /src/sidepanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/sidepanel.jsx -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /src/utils/websidetest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/src/utils/websidetest.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAMSHENSH/g-mark-magic-ext/HEAD/vite.config.js --------------------------------------------------------------------------------