DoSearch. Screenshot to GPT-4 Vision

DoSearch. Screenshot to GPT-4 Vision

Trigger shortcut, select area, ask quesiton, receive answer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "icons": {
    "16": "icon16.plasmo.6c567d50.png",
    "32": "icon32.plasmo.76b92899.png",
    "48": "icon48.plasmo.aced7582.png",
    "64": "icon64.plasmo.8bb5e6e0.png",
    "128": "icon128.plasmo.3c1ed2d2.png"
  },
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "icon16.plasmo.6c567d50.png",
      "32": "icon32.plasmo.76b92899.png",
      "48": "icon48.plasmo.aced7582.png",
      "64": "icon64.plasmo.8bb5e6e0.png",
      "128": "icon128.plasmo.3c1ed2d2.png"
    },
    "default_popup": "popup.html"
  },
  "version": "0.1.3",
  "author": "Robert Lukoshko",
  "name": "DoSearch. Screenshot to GPT-4 Vision",
  "description": "Trigger shortcut, select area, ask quesiton, receive answer.",
  "background": {
    "service_worker": "static/background/index.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "commands"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meta-payments-kappa.vercel.app/*",
        "https://dosearch.vercel.app/*",
        "http://0.0.0.0:3000/*",
        "http://localhost:3000/*"
      ],
      "js": [
        "getToken.c1b2cc1b.js"
      ],
      "all_frames": true,
      "css": []
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.6544eb09.js"
      ],
      "css": [
        "main.c9cc6b4e.css"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "cross_origin_embedder_policy": {
    "value": "require-corp"
  },
  "cross_origin_opener_policy": {
    "value": "same-origin"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/style.css",
        "iframe.html",
        "src/offscreen/offscreen.html",
        "src/offscreen/offscreen.js",
        "src/ML/**/*",
        "src/screenshot/pixel.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "options.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "gemclghfmbjgnkgioldffbhnhmflplcg"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "main.6e038a4b.css"
      ]
    }
  ],
  "commands": {
    "dosearch": {
      "suggested_key": {
        "default": "Alt+D"
      },
      "description": "SHORTCUT | Modify it 👉"
    }
  }
}