├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── dependabot.yaml └── workflows │ └── automated-tests.yaml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── MMM-page-indicator.js ├── README.md ├── cspell.config.json ├── eslint.config.mjs ├── examples ├── screencast_1_without-styling.gif ├── screencast_2_orange-star.gif ├── screencast_3_pulsing-active.gif ├── screencast_4_with-description.gif ├── screencast_5_rectangular-indicators.gif └── screenshot.png ├── package.json ├── page-indicators.css └── prettier.config.mjs /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/automated-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/.github/workflows/automated-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.js 2 | *.mjs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MMM-page-indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/MMM-page-indicator.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/README.md -------------------------------------------------------------------------------- /cspell.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/cspell.config.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /examples/screencast_1_without-styling.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/examples/screencast_1_without-styling.gif -------------------------------------------------------------------------------- /examples/screencast_2_orange-star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/examples/screencast_2_orange-star.gif -------------------------------------------------------------------------------- /examples/screencast_3_pulsing-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/examples/screencast_3_pulsing-active.gif -------------------------------------------------------------------------------- /examples/screencast_4_with-description.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/examples/screencast_4_with-description.gif -------------------------------------------------------------------------------- /examples/screencast_5_rectangular-indicators.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/examples/screencast_5_rectangular-indicators.gif -------------------------------------------------------------------------------- /examples/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/examples/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/package.json -------------------------------------------------------------------------------- /page-indicators.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/page-indicators.css -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-shen/MMM-page-indicator/HEAD/prettier.config.mjs --------------------------------------------------------------------------------