TabJam for ChatGPT

TabJam for ChatGPT

A free add-on for ChatGPT to help you add content from any website to your ChatGPT conversations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TabJam for ChatGPT",
  "manifest_version": 3,
  "version": "1.5.4",
  "description": "A free add-on for ChatGPT to help you add content from any website to your ChatGPT conversations.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "optional_permissions": [
    "scripting",
    "tabs"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    },
    "default_title": "Click me"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Ctrl+M",
        "mac": "Command+J",
        "chromeos": "Ctrl+M",
        "linux": "Ctrl+M"
      }
    }
  },
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/",
        "https://chat.openai.com/?*",
        "https://chat.openai.com/?model=*",
        "https://chat.openai.com/c/*",
        "https://chat.openai.com/chat",
        "https://chat.openai.com/chat?*",
        "https://chat.openai.com/chat/*"
      ],
      "js": [
        "js/content-script-openai.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://tabjam.ai/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/html/modal_basic.html",
        "/html/modal_permissions.html",
        "/html/modal_prompt_shortener.html",
        "/html/modal_tutorial.html",
        "/icons/logo24.png",
        "/icons/[email protected]"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    },
    {
      "resources": [
        "/html/modal_tutorial.html",
        "/icons/logo24.png",
        "/icons/[email protected]"
      ],
      "matches": [
        "https://tabjam.ai/*"
      ]
    },
    {
      "resources": [
        "/html/modal_select_content.html",
        "/html/toast.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}