├── .editorconfig ├── .github ├── FUNDING.yml └── stale.yml ├── .gitignore ├── .ncurc.js ├── EncryptedStorage.js ├── LICENSE ├── README.md ├── changelog.md ├── dev-app-update.yml ├── helpers ├── protos.js └── util.js ├── html ├── css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── main.css │ └── material-icons.css ├── encryption_setup.html ├── font │ └── MaterialIcons-Regular.woff2 ├── img │ ├── prime.svg │ └── skillgroups │ │ ├── dangerzone0.svg │ │ ├── dangerzone1.svg │ │ ├── dangerzone10.svg │ │ ├── dangerzone11.svg │ │ ├── dangerzone12.svg │ │ ├── dangerzone13.svg │ │ ├── dangerzone14.svg │ │ ├── dangerzone15.svg │ │ ├── dangerzone2.svg │ │ ├── dangerzone3.svg │ │ ├── dangerzone4.svg │ │ ├── dangerzone5.svg │ │ ├── dangerzone6.svg │ │ ├── dangerzone7.svg │ │ ├── dangerzone8.svg │ │ ├── dangerzone9.svg │ │ ├── dangerzone_expired.svg │ │ ├── dangerzone_none.svg │ │ ├── skillgroup0.svg │ │ ├── skillgroup1.svg │ │ ├── skillgroup10.svg │ │ ├── skillgroup11.svg │ │ ├── skillgroup12.svg │ │ ├── skillgroup13.svg │ │ ├── skillgroup14.svg │ │ ├── skillgroup15.svg │ │ ├── skillgroup16.svg │ │ ├── skillgroup17.svg │ │ ├── skillgroup18.svg │ │ ├── skillgroup2.svg │ │ ├── skillgroup3.svg │ │ ├── skillgroup4.svg │ │ ├── skillgroup5.svg │ │ ├── skillgroup6.svg │ │ ├── skillgroup7.svg │ │ ├── skillgroup8.svg │ │ ├── skillgroup9.svg │ │ ├── skillgroup_expired.svg │ │ ├── skillgroup_none.svg │ │ ├── wingman0.svg │ │ ├── wingman1.svg │ │ ├── wingman10.svg │ │ ├── wingman11.svg │ │ ├── wingman12.svg │ │ ├── wingman13.svg │ │ ├── wingman14.svg │ │ ├── wingman15.svg │ │ ├── wingman16.svg │ │ ├── wingman17.svg │ │ ├── wingman18.svg │ │ ├── wingman2.svg │ │ ├── wingman3.svg │ │ ├── wingman4.svg │ │ ├── wingman5.svg │ │ ├── wingman6.svg │ │ ├── wingman7.svg │ │ ├── wingman8.svg │ │ ├── wingman9.svg │ │ ├── wingman_expired.svg │ │ └── wingman_none.svg ├── index.html ├── js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ └── front.js └── password.html ├── icons └── icon.png ├── main.js ├── package.json ├── preload.js └── protos ├── base_gcmessages.proto ├── cstrike15_gcmessages.proto └── gcsdk_gcmessages.proto /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | ko_fi: nezu_ 4 | -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | out/ 3 | dist/ 4 | publish.sh -------------------------------------------------------------------------------- /.ncurc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/.ncurc.js -------------------------------------------------------------------------------- /EncryptedStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/EncryptedStorage.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/changelog.md -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/dev-app-update.yml -------------------------------------------------------------------------------- /helpers/protos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/helpers/protos.js -------------------------------------------------------------------------------- /helpers/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/helpers/util.js -------------------------------------------------------------------------------- /html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/css/bootstrap.min.css -------------------------------------------------------------------------------- /html/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /html/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/css/main.css -------------------------------------------------------------------------------- /html/css/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/css/material-icons.css -------------------------------------------------------------------------------- /html/encryption_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/encryption_setup.html -------------------------------------------------------------------------------- /html/font/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/font/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /html/img/prime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/prime.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone0.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone1.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone10.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone11.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone12.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone13.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone14.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone15.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone2.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone3.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone4.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone5.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone6.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone7.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone8.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone9.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone_expired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone_expired.svg -------------------------------------------------------------------------------- /html/img/skillgroups/dangerzone_none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/dangerzone_none.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup0.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup1.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup10.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup11.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup12.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup13.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup14.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup15.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup16.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup17.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup18.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup2.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup3.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup4.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup5.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup6.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup7.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup8.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup9.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup_expired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup_expired.svg -------------------------------------------------------------------------------- /html/img/skillgroups/skillgroup_none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/skillgroup_none.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman0.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman1.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman10.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman11.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman12.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman13.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman14.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman15.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman16.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman17.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman18.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman2.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman3.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman4.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman5.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman6.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman7.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman8.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman9.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman_expired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman_expired.svg -------------------------------------------------------------------------------- /html/img/skillgroups/wingman_none.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/img/skillgroups/wingman_none.svg -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/index.html -------------------------------------------------------------------------------- /html/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /html/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /html/js/front.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/js/front.js -------------------------------------------------------------------------------- /html/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/html/password.html -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/icons/icon.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/package.json -------------------------------------------------------------------------------- /preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/preload.js -------------------------------------------------------------------------------- /protos/base_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/protos/base_gcmessages.proto -------------------------------------------------------------------------------- /protos/cstrike15_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/protos/cstrike15_gcmessages.proto -------------------------------------------------------------------------------- /protos/gcsdk_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dumbasPL/csgo-checker/HEAD/protos/gcsdk_gcmessages.proto --------------------------------------------------------------------------------