ChatGPT AI Proposal Generator for Freelancers

ChatGPT AI Proposal Generator for Freelancers

🚀 Introducing the ChatGPT AI Proposal Creator for Freelancers 🚀, an exceptional Chrome extension designed to 💥 boost your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT AI Proposal Generator for Freelancers",
  "version": "2.8.4",
  "action": {
    "default_icon": {
      "16": "assets/icon16.png",
      "48": "assets/icon48.png",
      "128": "assets/icon128.png"
    },
    "default_title": "ChatGPT AI Proposal Generator for Freelancers"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options/index.html",
  "content_scripts": [
    {
      "matches": [
        "http://*.upwork.com/*",
        "https://*.upwork.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-scripts/import-proposal-generator.content.js",
        "content-scripts/import-subscription-popup.content.js"
      ]
    },
    {
      "matches": [
        "http://*.upwork.com/freelancers/*",
        "https://*.upwork.com/freelancers/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-scripts/import-autofill-info.content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "content-scripts/proposal-generator.content.js",
        "content-scripts/subscription-popup.content.js",
        "content-scripts/autofill-info.content.js"
      ],
      "matches": [
        "http://*.upwork.com/*",
        "https://*.upwork.com/*",
        "https://us-central1-upwork-helper-e7093.cloudfunctions.net/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "externally_connectable": {
    "matches": [
      "*://upwork-helper-e7093.web.app/*",
      "*://localhost/*"
    ]
  },
  "host_permissions": [
    "https://us-central1-upwork-helper-e7093.cloudfunctions.net/*"
  ]
}