├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── esbuild.config.mjs ├── eslint.config.mjs ├── images ├── screenshot1.png └── screenshot2.png ├── manifest.json ├── package.json ├── scripts ├── build.sh ├── gitdump.sh └── release.js ├── src ├── core │ ├── FileService.ts │ ├── ImageService.ts │ └── LinkService.ts ├── events │ └── EventService.ts ├── i18n │ ├── index.ts │ └── locales │ │ ├── de.ts │ │ ├── en.ts │ │ ├── es.ts │ │ ├── fr.ts │ │ ├── ja.ts │ │ └── zh.ts ├── main.ts ├── ui │ ├── MenuService.ts │ ├── modals.ts │ └── settings.ts └── utils │ ├── constants.ts │ ├── types.ts │ └── utils.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/images/screenshot1.png -------------------------------------------------------------------------------- /images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/images/screenshot2.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/gitdump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/scripts/gitdump.sh -------------------------------------------------------------------------------- /scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/scripts/release.js -------------------------------------------------------------------------------- /src/core/FileService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/core/FileService.ts -------------------------------------------------------------------------------- /src/core/ImageService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/core/ImageService.ts -------------------------------------------------------------------------------- /src/core/LinkService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/core/LinkService.ts -------------------------------------------------------------------------------- /src/events/EventService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/events/EventService.ts -------------------------------------------------------------------------------- /src/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/i18n/index.ts -------------------------------------------------------------------------------- /src/i18n/locales/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/i18n/locales/de.ts -------------------------------------------------------------------------------- /src/i18n/locales/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/i18n/locales/en.ts -------------------------------------------------------------------------------- /src/i18n/locales/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/i18n/locales/es.ts -------------------------------------------------------------------------------- /src/i18n/locales/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/i18n/locales/fr.ts -------------------------------------------------------------------------------- /src/i18n/locales/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/i18n/locales/ja.ts -------------------------------------------------------------------------------- /src/i18n/locales/zh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/i18n/locales/zh.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/ui/MenuService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/ui/MenuService.ts -------------------------------------------------------------------------------- /src/ui/modals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/ui/modals.ts -------------------------------------------------------------------------------- /src/ui/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/ui/settings.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johansan/pixel-perfect-image/HEAD/versions.json --------------------------------------------------------------------------------