├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── README.md ├── _locales ├── en │ └── messages.json ├── ja │ └── messages.json ├── ru │ └── messages.json └── tr │ └── messages.json ├── background.ts ├── icons ├── action-default-16.png ├── action-default-32.png ├── action-http2-16.png ├── action-http2-32.png ├── action-http3-16.png ├── action-http3-32.png ├── icon.svg └── src │ └── icon.svg ├── manifest.json ├── package.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | background.js 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | web-ext-artifacts/ 3 | .DS_Store 4 | background.js 5 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/README.md -------------------------------------------------------------------------------- /_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/_locales/en/messages.json -------------------------------------------------------------------------------- /_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/_locales/ja/messages.json -------------------------------------------------------------------------------- /_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/_locales/ru/messages.json -------------------------------------------------------------------------------- /_locales/tr/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/_locales/tr/messages.json -------------------------------------------------------------------------------- /background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/background.ts -------------------------------------------------------------------------------- /icons/action-default-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/action-default-16.png -------------------------------------------------------------------------------- /icons/action-default-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/action-default-32.png -------------------------------------------------------------------------------- /icons/action-http2-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/action-http2-16.png -------------------------------------------------------------------------------- /icons/action-http2-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/action-http2-32.png -------------------------------------------------------------------------------- /icons/action-http3-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/action-http3-16.png -------------------------------------------------------------------------------- /icons/action-http3-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/action-http3-32.png -------------------------------------------------------------------------------- /icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/icon.svg -------------------------------------------------------------------------------- /icons/src/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/icons/src/icon.svg -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsiegel/http-version-indicator/HEAD/tsconfig.json --------------------------------------------------------------------------------