ChatIdeaPrompt

ChatIdeaPrompt

Discover and use ChatGPT Best Tips

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.1.3",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/16.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "action": {
    "default_title": "__MSG_appName__"
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "js": [
        "js/historygpt.js",
        "js/insertmsg.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "js": [
        "js/insertdiscord.js"
      ],
      "matches": [
        "https://discord.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    },
    {
      "js": [
        "js/dudube.js"
      ],
      "matches": [
        "https://dudube.com/*"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_locales/*"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "storage"
  ],
  "homepage_url": "https://dudube.com",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvgVItJE5L8EFOSIvCRlLCEyejCZ2mWhG88rdi9JjjxRnfMuVSwA3rY4VL1+++u1dN7/10iwDsFycyJ6HuK2AF7Uny2Lxa5uaHu58W+h2P0dfvjLlpa7iy3ubRAGeaPgePjFvkuxWWrMRxxyAkJhpFLbYjxPUgFc7KOD/tU6MguY88MttgpkP1AJvgsgtYgnhPdRFFFO4PG747VgRP/XfdVEJbwNLpqx+spJF134ZSDcrTHicqm4ozxhFND0E5CFbyB17xXNjvt7BwMjZy1TU2NCU/cBs8HIaMvUFCINJkJqbndGgAfjdKxfFVsuNTT6WVqdmkG3AxrBzViofyvZwswIDAQAB"
}