Advanced Prompts for ChatGPT - PRMDB

Create Advanced Public or Private Multi-Value Forms-like Prompts for OpenAI ChatGPT
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Advanced Prompts for ChatGPT - PRMDB",
  "description": "Create Advanced Public or Private Multi-Value Forms-like Prompts for OpenAI ChatGPT",
  "version": "1.1.9",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "PRMDB - Open ChatGPT"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "declarativeNetRequestWithHostAccess"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "https://prmdb.com/*",
    "https://chat.openai.com/*",
    "https://chatgpt.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "config.js",
        "main.js",
        "inactive.js",
        "httpService.js",
        "utils.js",
        "vars.js",
        "style.css",
        "options.html"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "use_dynamic_url": true
    },
    {
      "resources": [
        "config.js",
        "main.js",
        "inactive.js",
        "httpService.js",
        "utils.js",
        "vars.js",
        "style.css",
        "options.html"
      ],
      "matches": [
        "https://chatgpt.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    },
    {
      "js": [
        "content_script.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "https://chatgpt.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}