├── .gitignore ├── LICENSE.txt ├── README.md ├── icon.png ├── manifest.json ├── package.json ├── src ├── app.tsx ├── components │ ├── selector.tsx │ └── switch.tsx ├── core.tsx ├── import-asset.d.ts ├── index.html ├── index.ts ├── style.css └── utils.tsx ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/icon.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/package.json -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/components/selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/components/selector.tsx -------------------------------------------------------------------------------- /src/components/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/components/switch.tsx -------------------------------------------------------------------------------- /src/core.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/core.tsx -------------------------------------------------------------------------------- /src/import-asset.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/import-asset.d.ts -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/style.css -------------------------------------------------------------------------------- /src/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/src/utils.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timpcfan/craft-toc-maker/HEAD/webpack.config.js --------------------------------------------------------------------------------