├── .eslintrc.js ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── docs ├── dist │ └── mouse-helper.js ├── index.html ├── screenshot-down.png ├── screenshot-move.png └── screenshot-none.png ├── package.json ├── public └── index.html ├── scripts ├── conf.cli.js ├── link.js └── test.js └── src ├── images ├── mouse-down.svg └── mouse-normal.svg └── index.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /package-lock.json 3 | /.temp 4 | /dist 5 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/README.md -------------------------------------------------------------------------------- /docs/dist/mouse-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/docs/dist/mouse-helper.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/screenshot-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/docs/screenshot-down.png -------------------------------------------------------------------------------- /docs/screenshot-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/docs/screenshot-move.png -------------------------------------------------------------------------------- /docs/screenshot-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/docs/screenshot-none.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/conf.cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/scripts/conf.cli.js -------------------------------------------------------------------------------- /scripts/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/scripts/link.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/images/mouse-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/src/images/mouse-down.svg -------------------------------------------------------------------------------- /src/images/mouse-normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/src/images/mouse-normal.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cenfun/mouse-helper/HEAD/src/index.js --------------------------------------------------------------------------------