├── .gitignore ├── README.md ├── icons └── border-48.png ├── index.js ├── manifest.json └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | .idea 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoanran/super-preloader/HEAD/README.md -------------------------------------------------------------------------------- /icons/border-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoanran/super-preloader/HEAD/icons/border-48.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoanran/super-preloader/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoanran/super-preloader/HEAD/manifest.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maoanran/super-preloader/HEAD/screenshot.png --------------------------------------------------------------------------------