Branded3 Advanced Operator Search

Branded3 Advanced Operator Search

A tool for performing quick advanced searches based on the current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Branded3 Advanced Operator Search",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "A tool for performing quick advanced searches based on the current page",
  "homepage_url": "https://www.branded3.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "B3 Advanced Search",
    "default_popup": "src/panels/panel.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "src/assets/app.css"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "src/libs/vue.min.js",
        "src/assets/app.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}