Find Manual

Find Manual

Find any user manual for many brand products from your browser toolbar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_shortName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "asset/image/icon128.png",
    "48": "asset/image/icon128.png",
    "128": "asset/image/icon128.png"
  },
  "version": "2.0.5",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "options_page": "html/OptionPage.html",
  "content_scripts": [
    {
      "js": [
        "js/ContentScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": "asset/image/icon128.png",
    "default_title": "__MSG_defTitle__",
    "default_popup": "./html/Popup.html"
  },
  "background": {
    "service_worker": "js/Background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "asset/image/manual-image.svg",
        "asset/image/Stroke.svg",
        "asset/font/Inter-SemiBold.ttf",
        "html/OptionPage.html",
        "js/initButton.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules11",
        "enabled": true,
        "path": "fmr.json"
      }
    ]
  }
}