Coffee Ext

Coffee Ext

Get coffee recipes in new tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.4",
  "name": "Coffee Ext",
  "description": "Get coffee recipes in new tab",
  "homepage_url": "https://chrome.google.com/webstore/detail/coffee-ext/haendekmhjpecolhdniimbdipebkjkhc",
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://www.firstonesolutions1.com/coffee/"
  ],
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content_script_idle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/bd-16.png",
      "32": "images/bd-32.png",
      "48": "images/bd-48.png",
      "128": "images/bd-128.png"
    }
  },
  "icons": {
    "16": "images/bd-16.png",
    "32": "images/bd-32.png",
    "48": "images/bd-48.png",
    "128": "images/bd-128.png"
  },
  "chrome_url_overrides": {
    "newtab": "landing.html"
  }
}