rose-helper

rose-helper

Helps rose out a little here and there.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.20.5",
  "name": "rose-helper",
  "short_name": "rose-helper",
  "description": "Hilft rose hier und da ein bisschen aus.",
  "default_locale": "de",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.rose.dental/*",
    "https://*.charly-analytics.de/*",
    "*://127.0.0.1/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.rose.dental/*",
      "https://*.charly-analytics.de/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.rose.dental/*",
        "https://*.charly-analytics.de/*"
      ],
      "all_frames": true,
      "js": [
        "content-scripts/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "./settings/settings.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "assets/icons/rose_o_16.png",
    "48": "assets/icons/rose_o_48.png",
    "128": "assets/icons/rose_o_128.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "scripts": [
      "service_worker.js"
    ],
    "type": "module"
  },
  "action": {
    "default_popup": "./popup/popup.html",
    "default_title": "rose-helper",
    "default_icon": {
      "19": "assets/icons/rose_o_19.png",
      "38": "assets/icons/rose_o_38.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{bf7f1669-bfb0-4d13-96f2-63ac060b4c71}",
      "strict_min_version": "42.0"
    }
  }
}