├── .eslintrc.json ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── neue-bibliothek.yml │ └── neue-nachrichtenseite.yml └── workflows │ ├── ci.yml │ ├── release.yml │ └── sites.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc.json ├── LICENSE ├── README.md ├── assets ├── mvp.css └── social.png ├── babel.config.js ├── dist.sh ├── generate_icons.sh ├── icons ├── bibbot-1024.png ├── bibbot-128.png ├── bibbot-16.png ├── bibbot-19.png ├── bibbot-192.png ├── bibbot-256.png ├── bibbot-288.png ├── bibbot-32.png ├── bibbot-38.png ├── bibbot-48.png ├── bibbot-512.png ├── bibbot-64.png ├── bibbot-96.png ├── bibbot-alpha-1024.png ├── bibbot-alpha-128.png ├── bibbot-alpha-16.png ├── bibbot-alpha-19.png ├── bibbot-alpha-192.png ├── bibbot-alpha-256.png ├── bibbot-alpha-288.png ├── bibbot-alpha-32.png ├── bibbot-alpha-38.png ├── bibbot-alpha-48.png ├── bibbot-alpha-512.png ├── bibbot-alpha-64.png ├── bibbot-alpha-96.png ├── bibbot-mono-1024.png ├── bibbot-mono-128.png ├── bibbot-mono-16.png ├── bibbot-mono-19.png ├── bibbot-mono-192.png ├── bibbot-mono-256.png ├── bibbot-mono-288.png ├── bibbot-mono-32.png ├── bibbot-mono-38.png ├── bibbot-mono-48.png ├── bibbot-mono-512.png ├── bibbot-mono-64.png ├── bibbot-mono-96.png ├── bibbot.svg ├── bibbot_monochrome.svg └── bibbot_simple.svg ├── index.html ├── manifest.json ├── options └── options.html ├── package.json ├── playwright.config.ts ├── popup ├── popup.css └── popup.html ├── privacy.md ├── rollup.config.js ├── src ├── background.ts ├── const.ts ├── content.ts ├── converters.ts ├── extractor.ts ├── global.d.ts ├── options.ts ├── popup.ts ├── providers.ts ├── reader.ts ├── services.ts ├── sitebot.ts ├── sites.ts ├── sourcebot.ts ├── sources.ts ├── stats.ts ├── tabrunner.ts ├── test_utils.ts ├── types.ts ├── ui.ts ├── update.ts └── utils.ts ├── tests ├── content_test.ts ├── extension.spec.ts ├── fixtures.ts ├── index.d.ts ├── sites.spec.ts └── tsconfig.json ├── tsconfig.json └── updates.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [stefanw] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/neue-bibliothek.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.github/ISSUE_TEMPLATE/neue-bibliothek.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/neue-nachrichtenseite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.github/ISSUE_TEMPLATE/neue-nachrichtenseite.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.github/workflows/sites.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/mvp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/assets/mvp.css -------------------------------------------------------------------------------- /assets/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/assets/social.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/babel.config.js -------------------------------------------------------------------------------- /dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/dist.sh -------------------------------------------------------------------------------- /generate_icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/generate_icons.sh -------------------------------------------------------------------------------- /icons/bibbot-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-1024.png -------------------------------------------------------------------------------- /icons/bibbot-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-128.png -------------------------------------------------------------------------------- /icons/bibbot-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-16.png -------------------------------------------------------------------------------- /icons/bibbot-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-19.png -------------------------------------------------------------------------------- /icons/bibbot-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-192.png -------------------------------------------------------------------------------- /icons/bibbot-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-256.png -------------------------------------------------------------------------------- /icons/bibbot-288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-288.png -------------------------------------------------------------------------------- /icons/bibbot-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-32.png -------------------------------------------------------------------------------- /icons/bibbot-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-38.png -------------------------------------------------------------------------------- /icons/bibbot-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-48.png -------------------------------------------------------------------------------- /icons/bibbot-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-512.png -------------------------------------------------------------------------------- /icons/bibbot-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-64.png -------------------------------------------------------------------------------- /icons/bibbot-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-96.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-1024.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-128.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-16.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-19.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-192.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-256.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-288.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-32.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-38.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-48.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-512.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-64.png -------------------------------------------------------------------------------- /icons/bibbot-alpha-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-alpha-96.png -------------------------------------------------------------------------------- /icons/bibbot-mono-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-1024.png -------------------------------------------------------------------------------- /icons/bibbot-mono-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-128.png -------------------------------------------------------------------------------- /icons/bibbot-mono-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-16.png -------------------------------------------------------------------------------- /icons/bibbot-mono-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-19.png -------------------------------------------------------------------------------- /icons/bibbot-mono-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-192.png -------------------------------------------------------------------------------- /icons/bibbot-mono-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-256.png -------------------------------------------------------------------------------- /icons/bibbot-mono-288.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-288.png -------------------------------------------------------------------------------- /icons/bibbot-mono-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-32.png -------------------------------------------------------------------------------- /icons/bibbot-mono-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-38.png -------------------------------------------------------------------------------- /icons/bibbot-mono-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-48.png -------------------------------------------------------------------------------- /icons/bibbot-mono-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-512.png -------------------------------------------------------------------------------- /icons/bibbot-mono-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-64.png -------------------------------------------------------------------------------- /icons/bibbot-mono-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot-mono-96.png -------------------------------------------------------------------------------- /icons/bibbot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot.svg -------------------------------------------------------------------------------- /icons/bibbot_monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot_monochrome.svg -------------------------------------------------------------------------------- /icons/bibbot_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/icons/bibbot_simple.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/manifest.json -------------------------------------------------------------------------------- /options/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/options/options.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /popup/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/popup/popup.css -------------------------------------------------------------------------------- /popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/popup/popup.html -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/privacy.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/background.ts -------------------------------------------------------------------------------- /src/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/const.ts -------------------------------------------------------------------------------- /src/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/content.ts -------------------------------------------------------------------------------- /src/converters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/converters.ts -------------------------------------------------------------------------------- /src/extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/extractor.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/options.ts -------------------------------------------------------------------------------- /src/popup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/popup.ts -------------------------------------------------------------------------------- /src/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/providers.ts -------------------------------------------------------------------------------- /src/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/reader.ts -------------------------------------------------------------------------------- /src/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/services.ts -------------------------------------------------------------------------------- /src/sitebot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/sitebot.ts -------------------------------------------------------------------------------- /src/sites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/sites.ts -------------------------------------------------------------------------------- /src/sourcebot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/sourcebot.ts -------------------------------------------------------------------------------- /src/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/sources.ts -------------------------------------------------------------------------------- /src/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/stats.ts -------------------------------------------------------------------------------- /src/tabrunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/tabrunner.ts -------------------------------------------------------------------------------- /src/test_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/test_utils.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/ui.ts -------------------------------------------------------------------------------- /src/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/update.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tests/content_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/tests/content_test.ts -------------------------------------------------------------------------------- /tests/extension.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/tests/extension.spec.ts -------------------------------------------------------------------------------- /tests/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/tests/fixtures.ts -------------------------------------------------------------------------------- /tests/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/tests/index.d.ts -------------------------------------------------------------------------------- /tests/sites.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/tests/sites.spec.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanw/bibbot/HEAD/updates.json --------------------------------------------------------------------------------