Ask Screenshot for Gemini

Ask Screenshot for Gemini

Take a screenshot on any page and ask Gemini about it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "short_name": "Ask Gemini",
  "version": "0.0.3",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "default_locale": "en",
  "optional_host_permissions": [
    "<all_urls>"
  ],
  "host_permissions": [
    "https://gemini.google.com/*"
  ],
  "optional_permissions": [
    "desktopCapture"
  ],
  "permissions": [
    "storage",
    "scripting",
    "contextMenus",
    "activeTab"
  ],
  "omnibox": {
    "keyword": "gem"
  },
  "icons": {
    "128": "128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {},
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://gemini.google.com/*"
      ],
      "js": [
        "isolated.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://gemini.google.com/*"
      ],
      "js": [
        "main.js"
      ],
      "world": "MAIN",
      "run_at": "document_start"
    }
  ],
  "commands": {
    "1openPopup": {
      "description": "Open Gemini"
    },
    "actionA": {
      "description": "+ Action A"
    },
    "actionB": {
      "description": "+ Action B"
    },
    "actionC": {
      "description": "+ Action C"
    },
    "actionD": {
      "description": "+ Action D"
    },
    "actionE": {
      "description": "+ Action E"
    },
    "actionF": {
      "description": "+ Action F"
    },
    "actionG": {
      "description": "+ Action G"
    },
    "actionH": {
      "description": "+ Action H"
    },
    "actionI": {
      "description": "+ Action I"
    },
    "actionJ": {
      "description": "+ Action J"
    },
    "actionK": {
      "description": "+ Action K"
    },
    "actionL": {
      "description": "+ Action L"
    },
    "actionM": {
      "description": "+ Action M"
    },
    "actionN": {
      "description": "+ Action N"
    },
    "actionO": {
      "description": "+ Action O"
    },
    "actionP": {
      "description": "+ Action P"
    },
    "actionQ": {
      "description": "+ Action Q"
    },
    "actionR": {
      "description": "+ Action R"
    },
    "actionS": {
      "description": "+ Action S"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}