SharePrompts: Share your ChatGPT,Bard Prompts

SharePrompts is a Chrome extension that allows you to share your prompts with one click from ChatGPT and Bard
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SharePrompts: Share your ChatGPT,Bard Prompts",
  "description": "SharePrompts is a Chrome extension that allows you to share your prompts with one click from ChatGPT and Bard",
  "version": "2.1.0",
  "manifest_version": 3,
  "icons": {
    "16": "assets/icons/icon16.png",
    "32": "assets/icons/icon32.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "assets/icons/icon16.png",
      "32": "assets/icons/icon32.png",
      "48": "assets/icons/icon48.png",
      "128": "assets/icons/icon128.png"
    },
    "default_title": "SharePrompts: Share your ChatGPT, Bard Prompts",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://bard.google.com/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ]
}