Shift-Ctrl-F: Semantic Search for the Browser

Shift-Ctrl-F: Semantic Search for the Browser

Search the information available on a webpage using natural language.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Search the information available on a webpage using natural language.",
  "version": "0.1.0",
  "manifest_version": 2,
  "name": "Shift-Ctrl-F: Semantic Search for the Browser",
  "short_name": "Shift-Ctrl-F",
  "author": "Yoav Zimmerman <[email protected]>",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Shift+Ctrl+F",
        "mac": "Shift+Ctrl+F"
      }
    }
  }
}