Say Anything: Prompt Segment Anything Model

Say Anything: Prompt Segment Anything Model

Enable natural language prompting for the Segment Anything Model (SAM) using CLIP embeddings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Say Anything: Prompt Segment Anything Model",
  "version": "1.3",
  "description": "Enable natural language prompting for the Segment Anything Model (SAM) using CLIP embeddings.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://segment-anything.com/demo",
        "https://segment-anything.com/demo?"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ]
}