├── .editorconfig ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── RELEASE_NOTES.md ├── jest.config.js ├── package.json ├── screenshots ├── promo-image-1400x560.png ├── promo-image-440x280.png ├── promo-image-920x680.png ├── screenshot-1-EN.png ├── screenshot-1-ES.png ├── screenshot-2-EN.png ├── screenshot-2-ES.png ├── screenshot-3-EN.png ├── screenshot-3-ES.png ├── screenshot-4-EN.png ├── screenshot-4-ES.png ├── screenshot-5-EN.png ├── screenshot-5-ES.png ├── screenshot-full-achievements.png ├── screenshot-full-en.png ├── screenshot-full-es.png └── screenshot-full-summary.png ├── src ├── _locales │ ├── en │ │ └── messages.json │ └── es │ │ └── messages.json ├── dashboard │ ├── dashboard.css │ ├── dashboard.html │ └── dashboard.js ├── empty.html ├── error.html ├── images │ ├── ani_netflix_stats.gif │ ├── logo128.png │ ├── logo16.png │ ├── logo32.png │ ├── logo48.png │ ├── movie.svg │ └── tv.svg ├── manifest.json ├── popup │ ├── popup.css │ ├── popup.html │ └── popup.js ├── utils │ ├── achievements.js │ ├── activity.js │ ├── chart.js │ ├── db.js │ ├── debug.js │ ├── format.js │ ├── loader.js │ ├── stats.js │ ├── template.js │ └── viewing.js └── vendor │ ├── css │ └── material-icons.css │ └── js │ ├── chart.min.js │ ├── jquery.min.js │ ├── json2csv.min.js │ ├── lodash.min.js │ └── purify.min.js └── test ├── achievements.test.js ├── debug.test.js ├── format.test.js ├── stats.test.js └── viewing.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | firebase/ 2 | .sonarlint/ 3 | node_modules/ 4 | coverage/ 5 | *.zip 6 | .DS_Store -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.json 2 | src/vendor/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/promo-image-1400x560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/promo-image-1400x560.png -------------------------------------------------------------------------------- /screenshots/promo-image-440x280.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/promo-image-440x280.png -------------------------------------------------------------------------------- /screenshots/promo-image-920x680.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/promo-image-920x680.png -------------------------------------------------------------------------------- /screenshots/screenshot-1-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-1-EN.png -------------------------------------------------------------------------------- /screenshots/screenshot-1-ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-1-ES.png -------------------------------------------------------------------------------- /screenshots/screenshot-2-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-2-EN.png -------------------------------------------------------------------------------- /screenshots/screenshot-2-ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-2-ES.png -------------------------------------------------------------------------------- /screenshots/screenshot-3-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-3-EN.png -------------------------------------------------------------------------------- /screenshots/screenshot-3-ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-3-ES.png -------------------------------------------------------------------------------- /screenshots/screenshot-4-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-4-EN.png -------------------------------------------------------------------------------- /screenshots/screenshot-4-ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-4-ES.png -------------------------------------------------------------------------------- /screenshots/screenshot-5-EN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-5-EN.png -------------------------------------------------------------------------------- /screenshots/screenshot-5-ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-5-ES.png -------------------------------------------------------------------------------- /screenshots/screenshot-full-achievements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-full-achievements.png -------------------------------------------------------------------------------- /screenshots/screenshot-full-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-full-en.png -------------------------------------------------------------------------------- /screenshots/screenshot-full-es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-full-es.png -------------------------------------------------------------------------------- /screenshots/screenshot-full-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/screenshots/screenshot-full-summary.png -------------------------------------------------------------------------------- /src/_locales/en/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/_locales/en/messages.json -------------------------------------------------------------------------------- /src/_locales/es/messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/_locales/es/messages.json -------------------------------------------------------------------------------- /src/dashboard/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/dashboard/dashboard.css -------------------------------------------------------------------------------- /src/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/dashboard/dashboard.html -------------------------------------------------------------------------------- /src/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/dashboard/dashboard.js -------------------------------------------------------------------------------- /src/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/empty.html -------------------------------------------------------------------------------- /src/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/error.html -------------------------------------------------------------------------------- /src/images/ani_netflix_stats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/images/ani_netflix_stats.gif -------------------------------------------------------------------------------- /src/images/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/images/logo128.png -------------------------------------------------------------------------------- /src/images/logo16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/images/logo16.png -------------------------------------------------------------------------------- /src/images/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/images/logo32.png -------------------------------------------------------------------------------- /src/images/logo48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/images/logo48.png -------------------------------------------------------------------------------- /src/images/movie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/images/movie.svg -------------------------------------------------------------------------------- /src/images/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/images/tv.svg -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/popup/popup.css -------------------------------------------------------------------------------- /src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/popup/popup.html -------------------------------------------------------------------------------- /src/popup/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/popup/popup.js -------------------------------------------------------------------------------- /src/utils/achievements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/achievements.js -------------------------------------------------------------------------------- /src/utils/activity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/activity.js -------------------------------------------------------------------------------- /src/utils/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/chart.js -------------------------------------------------------------------------------- /src/utils/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/db.js -------------------------------------------------------------------------------- /src/utils/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/debug.js -------------------------------------------------------------------------------- /src/utils/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/format.js -------------------------------------------------------------------------------- /src/utils/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/loader.js -------------------------------------------------------------------------------- /src/utils/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/stats.js -------------------------------------------------------------------------------- /src/utils/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/template.js -------------------------------------------------------------------------------- /src/utils/viewing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/utils/viewing.js -------------------------------------------------------------------------------- /src/vendor/css/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/vendor/css/material-icons.css -------------------------------------------------------------------------------- /src/vendor/js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/vendor/js/chart.min.js -------------------------------------------------------------------------------- /src/vendor/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/vendor/js/jquery.min.js -------------------------------------------------------------------------------- /src/vendor/js/json2csv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/vendor/js/json2csv.min.js -------------------------------------------------------------------------------- /src/vendor/js/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/vendor/js/lodash.min.js -------------------------------------------------------------------------------- /src/vendor/js/purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/src/vendor/js/purify.min.js -------------------------------------------------------------------------------- /test/achievements.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/test/achievements.test.js -------------------------------------------------------------------------------- /test/debug.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/test/debug.test.js -------------------------------------------------------------------------------- /test/format.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/test/format.test.js -------------------------------------------------------------------------------- /test/stats.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/test/stats.test.js -------------------------------------------------------------------------------- /test/viewing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmartos/netflix-usage-stats/HEAD/test/viewing.test.js --------------------------------------------------------------------------------