Clipboard Content Opener

Clipboard Content Opener

クリップボードの内容がURLの場合はそのページを開き、URL以外の文字列の場合は検索を行い、画像の場合は画像検索を行う拡張機能です。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_page": "option.html",
  "permissions": [
    "tabs",
    "clipboardRead",
    "storage"
  ],
  "host_permissions": [
    "https://www.google.com/searchbyimage/upload",
    "https://ascii2d.net/search/file",
    "https://tineye.com/result_json/*",
    "https://yandex.com/images/*"
  ],
  "default_locale": "ja",
  "description": "__MSG_extensionDesc__",
  "icons": {
    "16": "icon/16.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.4.3"
}