Search from Popup or ContextMenu

Search from Popup or ContextMenu

Fork of "Swift Selection Search". When you select text or image on a webpage, you can quickly search from the popup or contextmenu

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "8.1",
  "name": "Search from Popup or ContextMenu",
  "short_name": "SPC",
  "description": "Fork of \"Swift Selection Search\". When you select text or image on a webpage, you can quickly search from the popup or contextmenu",
  "author": "Yoshifumi Fuyuno",
  "homepage_url": "https://github.com/YoshifumiFuyuno/Search-from-Popup-or-ContextMenu/issues",
  "icons": {
    "48": "res/icons/icon48.png",
    "96": "res/icons/icon96.png"
  },
  "background": {
    "page": "background.html"
  },
  "minimum_chrome_version": "108",
  "options_ui": {
    "page": "settings/settings.html",
    "open_in_tab": true
  },
  "permissions": [
    "<all_urls>",
    "activeTab",
    "contextMenus",
    "storage",
    "tabs",
    "clipboardRead",
    "unlimitedStorage"
  ],
  "optional_permissions": [
    "bookmarks",
    "webRequest",
    "webRequestBlocking",
    "clipboardWrite",
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "content-scripts/webcomponents.js",
        "browserpolyfill.js",
        "content-scripts/page-script.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/highlight.js"
      ]
    },
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "content-scripts/addExampleEngine.js"
      ]
    }
  ],
  "commands": {
    "open-popup": {
      "suggested_key": {
        "default": "Ctrl+Shift+Space"
      },
      "description": "Toggle open/close popup"
    },
    "toggle-auto-popup": {
      "suggested_key": {
        "default": "Ctrl+Shift+U"
      },
      "description": "Toggle auto popup opening"
    }
  },
  "sidebar_action": {
    "default_icon": {
      "48": "res/icons/icon48.png",
      "96": "res/icons/icon96.png"
    },
    "default_panel": "sidebar.html",
    "open_at_install": false
  },
  "browser_action": {
    "default_icon": {
      "48": "res/icons/icon48.png",
      "96": "res/icons/icon96.png"
    },
    "default_title": "SPC - toggle popup"
  },
  "omnibox": {
    "keyword": "s"
  },
  "web_accessible_resources": [
    "res/icons/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}