├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .stylelintrc.json ├── LICENSE.md ├── README.md ├── package.json └── src ├── _locales ├── de │ └── messages.json ├── en │ └── messages.json ├── ja │ └── messages.json ├── ko │ └── messages.json ├── outdated_pt_BR │ └── messages.json ├── pl │ └── messages.json ├── ru │ └── messages.json └── sk │ └── messages.json ├── css ├── options.css ├── popup.css └── sidebar.css ├── favicon.ico ├── img ├── icon-dark-16.png ├── icon-dark-48.png ├── icon-dark-96.png ├── icon-dark-enabled-16.png ├── icon-dark-enabled-48.png ├── icon-dark-enabled-96.png ├── icon-light-16.png ├── icon-light-48.png ├── icon-light-96.png ├── icon-light-enabled-16.png ├── icon-light-enabled-48.png └── icon-light-enabled-96.png ├── js ├── background.js ├── components │ ├── defaults.js │ ├── storage.js │ └── supported.js ├── options.js └── popup.js ├── manifest-chrome.json ├── manifest-firefox.json ├── options.html ├── popup.html └── sidebar.html /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/package.json -------------------------------------------------------------------------------- /src/_locales/de/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/de/messages.json -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/ja/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/ja/messages.json -------------------------------------------------------------------------------- /src/_locales/ko/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/ko/messages.json -------------------------------------------------------------------------------- /src/_locales/outdated_pt_BR/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/outdated_pt_BR/messages.json -------------------------------------------------------------------------------- /src/_locales/pl/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/pl/messages.json -------------------------------------------------------------------------------- /src/_locales/ru/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/ru/messages.json -------------------------------------------------------------------------------- /src/_locales/sk/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/_locales/sk/messages.json -------------------------------------------------------------------------------- /src/css/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/css/options.css -------------------------------------------------------------------------------- /src/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/css/popup.css -------------------------------------------------------------------------------- /src/css/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/css/sidebar.css -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/img/icon-dark-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-dark-16.png -------------------------------------------------------------------------------- /src/img/icon-dark-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-dark-48.png -------------------------------------------------------------------------------- /src/img/icon-dark-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-dark-96.png -------------------------------------------------------------------------------- /src/img/icon-dark-enabled-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-dark-enabled-16.png -------------------------------------------------------------------------------- /src/img/icon-dark-enabled-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-dark-enabled-48.png -------------------------------------------------------------------------------- /src/img/icon-dark-enabled-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-dark-enabled-96.png -------------------------------------------------------------------------------- /src/img/icon-light-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-light-16.png -------------------------------------------------------------------------------- /src/img/icon-light-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-light-48.png -------------------------------------------------------------------------------- /src/img/icon-light-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-light-96.png -------------------------------------------------------------------------------- /src/img/icon-light-enabled-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-light-enabled-16.png -------------------------------------------------------------------------------- /src/img/icon-light-enabled-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-light-enabled-48.png -------------------------------------------------------------------------------- /src/img/icon-light-enabled-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/img/icon-light-enabled-96.png -------------------------------------------------------------------------------- /src/js/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/js/background.js -------------------------------------------------------------------------------- /src/js/components/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/js/components/defaults.js -------------------------------------------------------------------------------- /src/js/components/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/js/components/storage.js -------------------------------------------------------------------------------- /src/js/components/supported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/js/components/supported.js -------------------------------------------------------------------------------- /src/js/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/js/options.js -------------------------------------------------------------------------------- /src/js/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/js/popup.js -------------------------------------------------------------------------------- /src/manifest-chrome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/manifest-chrome.json -------------------------------------------------------------------------------- /src/manifest-firefox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/manifest-firefox.json -------------------------------------------------------------------------------- /src/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/options.html -------------------------------------------------------------------------------- /src/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/popup.html -------------------------------------------------------------------------------- /src/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/54ac/stream-detector/HEAD/src/sidebar.html --------------------------------------------------------------------------------