├── .eslintrc.json ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── demo ├── selectImages.gif └── watchURL.gif ├── images └── logo128.png ├── package.json ├── src ├── SuperBG.ts ├── commands │ ├── decreaseEmulatedWidth.ts │ ├── decreaseOpacity.ts │ ├── decreaseScale.ts │ ├── disable.ts │ ├── enable.ts │ ├── increaseEmulatedWidth.ts │ ├── increaseOpacity.ts │ ├── increaseScale.ts │ ├── nextImage.ts │ ├── pinToTop.ts │ ├── previousImage.ts │ ├── selectImages.ts │ ├── selectVideo.ts │ └── watchURL.ts ├── extension.ts ├── static │ └── superBG.js └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-engines true -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/README.md -------------------------------------------------------------------------------- /demo/selectImages.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/demo/selectImages.gif -------------------------------------------------------------------------------- /demo/watchURL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/demo/watchURL.gif -------------------------------------------------------------------------------- /images/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/images/logo128.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/package.json -------------------------------------------------------------------------------- /src/SuperBG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/SuperBG.ts -------------------------------------------------------------------------------- /src/commands/decreaseEmulatedWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/decreaseEmulatedWidth.ts -------------------------------------------------------------------------------- /src/commands/decreaseOpacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/decreaseOpacity.ts -------------------------------------------------------------------------------- /src/commands/decreaseScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/decreaseScale.ts -------------------------------------------------------------------------------- /src/commands/disable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/disable.ts -------------------------------------------------------------------------------- /src/commands/enable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/enable.ts -------------------------------------------------------------------------------- /src/commands/increaseEmulatedWidth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/increaseEmulatedWidth.ts -------------------------------------------------------------------------------- /src/commands/increaseOpacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/increaseOpacity.ts -------------------------------------------------------------------------------- /src/commands/increaseScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/increaseScale.ts -------------------------------------------------------------------------------- /src/commands/nextImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/nextImage.ts -------------------------------------------------------------------------------- /src/commands/pinToTop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/pinToTop.ts -------------------------------------------------------------------------------- /src/commands/previousImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/previousImage.ts -------------------------------------------------------------------------------- /src/commands/selectImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/selectImages.ts -------------------------------------------------------------------------------- /src/commands/selectVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/selectVideo.ts -------------------------------------------------------------------------------- /src/commands/watchURL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/commands/watchURL.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/static/superBG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/static/superBG.js -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaweii/superBG/HEAD/yarn.lock --------------------------------------------------------------------------------