├── .gitignore ├── LICENSE ├── README.md ├── overview ├── login-1.png ├── login-2.png ├── login.gif ├── logo.png ├── overview.png ├── usage-1.gif └── usage-2.gif ├── package.json └── picee ├── images └── logo.png ├── index.html ├── js ├── chooseImg.js ├── element-ui.js ├── fetch.js ├── main.js ├── paste.js └── vue.min.js ├── manifest.json └── style ├── element-ui.css ├── fonts ├── element-icons.ttf └── element-icons.woff ├── main.css └── main.less /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/README.md -------------------------------------------------------------------------------- /overview/login-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/overview/login-1.png -------------------------------------------------------------------------------- /overview/login-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/overview/login-2.png -------------------------------------------------------------------------------- /overview/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/overview/login.gif -------------------------------------------------------------------------------- /overview/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/overview/logo.png -------------------------------------------------------------------------------- /overview/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/overview/overview.png -------------------------------------------------------------------------------- /overview/usage-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/overview/usage-1.gif -------------------------------------------------------------------------------- /overview/usage-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/overview/usage-2.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/package.json -------------------------------------------------------------------------------- /picee/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/images/logo.png -------------------------------------------------------------------------------- /picee/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/index.html -------------------------------------------------------------------------------- /picee/js/chooseImg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/js/chooseImg.js -------------------------------------------------------------------------------- /picee/js/element-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/js/element-ui.js -------------------------------------------------------------------------------- /picee/js/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/js/fetch.js -------------------------------------------------------------------------------- /picee/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/js/main.js -------------------------------------------------------------------------------- /picee/js/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/js/paste.js -------------------------------------------------------------------------------- /picee/js/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/js/vue.min.js -------------------------------------------------------------------------------- /picee/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/manifest.json -------------------------------------------------------------------------------- /picee/style/element-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/style/element-ui.css -------------------------------------------------------------------------------- /picee/style/fonts/element-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/style/fonts/element-icons.ttf -------------------------------------------------------------------------------- /picee/style/fonts/element-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/style/fonts/element-icons.woff -------------------------------------------------------------------------------- /picee/style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/style/main.css -------------------------------------------------------------------------------- /picee/style/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrainlau/picee/HEAD/picee/style/main.less --------------------------------------------------------------------------------