Mock It

Mock It

Mock It is a Chrome extension designed to find non-alcoholic alternatives to cocktail recipes. When a user is on a website and…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_title": "Mock It",
    "default_icon": {
      "16": "src/assets/icons/icon.png",
      "32": "src/assets/icons/icon.png",
      "48": "src/assets/icons/icon.png",
      "128": "src/assets/icons/icon.png"
    }
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader-d3f3b3c8.js"
      ],
      "all_frames": false,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "css": [
        "assets/index-711073d6.css"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "manifest_version": 3,
  "name": "Mock It",
  "permissions": [
    "activeTab"
  ],
  "version": "2.0",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "src/content-script/index.ts"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/icon.png",
        "assets/index-f99c513d.js",
        "assets/index.ts-a7a98b80.js"
      ],
      "use_dynamic_url": true
    }
  ]
}