Chip Stock and Price Search

This Extension can find the stock and best price of chips all over the world.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Chip Stock and Price Search",
  "version": "33.45.41.2",
  "description": "This Extension can find the stock and best price of chips all over the world.",
  "icons": {
    "32": "img/icon_32.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png",
    "160": "img/icon_160.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+R"
      },
      "description": "Activate plug-in menu"
    },
    "search_1": {
      "suggested_key": {
        "default": "Alt+1"
      },
      "description": "Shortcut 1, default is Google"
    },
    "search_2": {
      "suggested_key": {
        "default": "Alt+2"
      },
      "description": "Shortcut 2, default is Online Mall"
    },
    "search_3": {
      "suggested_key": {
        "default": "Alt+3"
      },
      "description": "Shortcut 3, default is Online Market"
    }
  },
  "action": {
    "default_icon": {
      "32": "img/icon_32.png",
      "64": "img/icon_64.png",
      "128": "img/icon_128.png",
      "160": "img/icon_160.png"
    },
    "default_title": "Click to open「Chip Stock and Price Search」 menu",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/15.js"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "js": [
        "js/25.js"
      ],
      "css": [
        "css/50.css"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "author": "VectorRight",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}