Skip to content

Instantly share code, notes, and snippets.

@clemenstyp
clemenstyp / schnelltest-availability.js
Last active April 4, 2021 07:51 — forked from marco79cgn/schnelltest-availability.js
Shows the available amount of Covid Tests in your local drug store and online
let country = "de"; // replace with 'at' for shops in Austria
let storeId = 251;
const de_store_items = ["796724", "797046", "797729"];
const at_store_items = ["188896"];
let param = args.widgetParameter;
if (param != null && param.length > 0) {
if (param.indexOf(";") > 0) {
const paramSplit = param.split(";");
storeId = paramSplit[0];
country = paramSplit[1].toLowerCase();