Branston Pickle Plugin

Branston Pickle Plugin

The Pickle Plugin provides a daily reminder to switch off and enjoy a proper lunchtime, and maybe even a cheese and pickle sandwich.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Branston Pickle Plugin",
  "description": "The Pickle Plugin provides a daily reminder to switch off and enjoy a proper lunchtime, and maybe even a cheese and pickle sandwich.",
  "version": "0.5.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications"
  ],
  "action": {
    "default_title": "Pickle Plugin Settings",
    "default_popup": "src/templates/popup.html",
    "default_icon": {
      "16": "images/icons/branston-icon-16.png",
      "32": "images/icons/branston-icon-32.png",
      "48": "images/icons/branston-icon-48.png",
      "128": "images/icons/branston-icon-128.png"
    }
  },
  "icons": {
    "16": "images/icons/branston-icon-16.png",
    "32": "images/icons/branston-icon-32.png",
    "48": "images/icons/branston-icon-48.png",
    "128": "images/icons/branston-icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.content-script.js.24ce93d6.01eadc72.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content-style.css"
      ],
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/sandwiches/monday.png",
        "images/sandwiches/tuesday.png",
        "images/sandwiches/wednesday.png",
        "images/sandwiches/thursday.png",
        "images/sandwiches/friday.png",
        "images/sandwiches/saturday.png",
        "images/sandwiches/sunday.png",
        "images/cursor/custom-cursor.png",
        "images/cursor/custom-cursor.svg",
        "images/icons/branston-icon-128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "assets/vendor.cff7ba57.js",
        "assets/content-script.js.24ce93d6.js"
      ],
      "use_dynamic_url": true
    }
  ]
}