├── .babelrc ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── main.yml │ └── release-please.yml ├── .gitignore ├── .node-version ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.ja.md ├── README.md ├── img └── VRCFriendCheck.png ├── package.json ├── renovate.json ├── scripts ├── build-zip.js └── remove-evals.js ├── src ├── _locales │ ├── en │ │ └── messages.json │ ├── ja │ │ └── messages.json │ └── ko │ │ └── messages.json ├── background.js ├── icons │ ├── icon-128.png │ ├── icon-16.png │ ├── icon-19.png │ └── icon-38.png ├── manifest.json ├── onlineUserNotification.js ├── onlineUserNumBadge.ts ├── options │ ├── App.vue │ ├── options.html │ └── options.js ├── popup │ ├── App.vue │ ├── popup.html │ ├── popup.js │ └── router │ │ ├── components │ │ ├── OfflineUserItem.vue │ │ └── OnlineUserItem.vue │ │ ├── index.js │ │ ├── pages │ │ ├── Footer.vue │ │ ├── Index.vue │ │ ├── Login.vue │ │ └── twoFactor.vue │ │ └── routes.js └── userList.ts ├── tsconfig.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 16.15.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/README.md -------------------------------------------------------------------------------- /img/VRCFriendCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/img/VRCFriendCheck.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/build-zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/scripts/build-zip.js -------------------------------------------------------------------------------- /scripts/remove-evals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/scripts/remove-evals.js -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/_locales/ja/messages.json -------------------------------------------------------------------------------- /src/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/_locales/ko/messages.json -------------------------------------------------------------------------------- /src/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/background.js -------------------------------------------------------------------------------- /src/icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/icons/icon-128.png -------------------------------------------------------------------------------- /src/icons/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/icons/icon-16.png -------------------------------------------------------------------------------- /src/icons/icon-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/icons/icon-19.png -------------------------------------------------------------------------------- /src/icons/icon-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/icons/icon-38.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/onlineUserNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/onlineUserNotification.js -------------------------------------------------------------------------------- /src/onlineUserNumBadge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/onlineUserNumBadge.ts -------------------------------------------------------------------------------- /src/options/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/options/App.vue -------------------------------------------------------------------------------- /src/options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/options/options.html -------------------------------------------------------------------------------- /src/options/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/options/options.js -------------------------------------------------------------------------------- /src/popup/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/App.vue -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/popup.js -------------------------------------------------------------------------------- /src/popup/router/components/OfflineUserItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/components/OfflineUserItem.vue -------------------------------------------------------------------------------- /src/popup/router/components/OnlineUserItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/components/OnlineUserItem.vue -------------------------------------------------------------------------------- /src/popup/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/index.js -------------------------------------------------------------------------------- /src/popup/router/pages/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/pages/Footer.vue -------------------------------------------------------------------------------- /src/popup/router/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/pages/Index.vue -------------------------------------------------------------------------------- /src/popup/router/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/pages/Login.vue -------------------------------------------------------------------------------- /src/popup/router/pages/twoFactor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/pages/twoFactor.vue -------------------------------------------------------------------------------- /src/popup/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/popup/router/routes.js -------------------------------------------------------------------------------- /src/userList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/src/userList.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnao305/VRCFriendCheck/HEAD/webpack.config.js --------------------------------------------------------------------------------