RankNow.ai for ChatGPT

RankNow.ai for ChatGPT

RankNow.ai for ChatGPT will show a list of curated prompt templates to ChatGPT conversations page to enhance your content writing

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RankNow.ai for ChatGPT",
  "description": "RankNow.ai for ChatGPT will show a list of curated prompt templates to ChatGPT conversations page to enhance your content writing",
  "version": "0.0.5",
  "version_name": "0.0.5 beta",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "RankNow.ai - Open ChatGPT"
  },
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "config.js",
        "inject.js",
        "client.js",
        "utils.js",
        "enums.js",
        "style.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "css": [
        "style.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}