├── .gitignore ├── README.md ├── dist ├── main │ ├── index.d.ts │ ├── index.d.ts.map │ ├── index.js │ └── index.js.map ├── module │ ├── index.d.ts │ ├── index.d.ts.map │ ├── index.js │ └── index.js.map └── umd │ └── supascriptconsole.js ├── docs ├── sample_chome_console_details.png └── sample_chrome_console_output.png ├── package.json ├── src └── index.ts ├── tsconfig.json ├── tsconfig.module.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/README.md -------------------------------------------------------------------------------- /dist/main/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/main/index.d.ts -------------------------------------------------------------------------------- /dist/main/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/main/index.d.ts.map -------------------------------------------------------------------------------- /dist/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/main/index.js -------------------------------------------------------------------------------- /dist/main/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/main/index.js.map -------------------------------------------------------------------------------- /dist/module/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/module/index.d.ts -------------------------------------------------------------------------------- /dist/module/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/module/index.d.ts.map -------------------------------------------------------------------------------- /dist/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/module/index.js -------------------------------------------------------------------------------- /dist/module/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/module/index.js.map -------------------------------------------------------------------------------- /dist/umd/supascriptconsole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/dist/umd/supascriptconsole.js -------------------------------------------------------------------------------- /docs/sample_chome_console_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/docs/sample_chome_console_details.png -------------------------------------------------------------------------------- /docs/sample_chrome_console_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/docs/sample_chrome_console_output.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/tsconfig.module.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burggraf/SupaScriptConsole/HEAD/webpack.config.js --------------------------------------------------------------------------------