Examine source code of AI Promptventory

Inspect and view changes in AI Promptventory source codes across current and past versions
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",
  "manifest_version": 3,
  "name": "AI Promptventory",
  "version": "0.2.1",
  "description": "Organize, store, and deploy your AI prompts in a click.",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "storage",
    "webNavigation",
    "clipboardWrite"
  ],
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://bard.google.com/*",
    "https://chatgpt.com/*",
    "https://claude.ai/*",
    "https://gemini.google.com/*",
    "https://www.doubao.com/*",
    "https://doubao.com/*",
    "https://chat.deepseek.com/*",
    "https://copilot.microsoft.com/*",
    "http://localhost/*",
    "https://localhost/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://bard.google.com/*",
        "https://chatgpt.com/*",
        "https://claude.ai/*",
        "https://gemini.google.com/*",
        "https://www.doubao.com/*",
        "https://doubao.com/*",
        "https://chat.deepseek.com/*",
        "https://copilot.microsoft.com/*",
        "http://localhost/*",
        "https://localhost/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "AI Promptventory"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.js",
        "*.css",
        "isolation.css",
        "defaultPrompts.json",
        "icon16.png",
        "icon32.png",
        "icon48.png",
        "icon128.png",
        "logo-light.png",
        "logo-dark.png"
      ],
      "matches": [
        "https://chat.openai.com/*",
        "https://bard.google.com/*",
        "https://chatgpt.com/*",
        "https://claude.ai/*",
        "https://gemini.google.com/*",
        "https://www.doubao.com/*",
        "https://doubao.com/*",
        "https://chat.deepseek.com/*",
        "https://copilot.microsoft.com/*",
        "http://localhost/*",
        "https://localhost/*"
      ]
    }
  ]
}