├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── blitzOptim-decorations.svg ├── favicon.ico ├── icons │ ├── icon-256x256.png │ └── icon-512x512.png └── logo.svg ├── css ├── print.css └── styles.css ├── index.html ├── js └── script.js ├── manifest.json ├── package.json ├── src ├── data.json └── template.mustache └── sw.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/README.md -------------------------------------------------------------------------------- /assets/blitzOptim-decorations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/assets/blitzOptim-decorations.svg -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/icons/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/assets/icons/icon-256x256.png -------------------------------------------------------------------------------- /assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/css/print.css -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/css/styles.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/index.html -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/js/script.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/package.json -------------------------------------------------------------------------------- /src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/src/data.json -------------------------------------------------------------------------------- /src/template.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/src/template.mustache -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriendsOfEpub/eBookPerfChecklist/HEAD/sw.js --------------------------------------------------------------------------------