UpBrain: Freelancer/Upwork ChatGPT Proposals

UpBrain: Freelancer/Upwork ChatGPT Proposals

AI Powered Freelance Proposals

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UpBrain: Freelancer/Upwork ChatGPT Proposals",
  "description": "AI Powered Freelance Proposals",
  "version": "0.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background-scripts/background.js"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "/imgs/icons/icon16.png",
    "32": "/imgs/icons/icon32.png",
    "48": "/imgs/icons/icon48.png",
    "128": "/imgs/icons/icon128.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://mail.google.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content-scripts/jquery.js"
      ],
      "css": [
        "content-scripts/styles.css",
        "content-scripts/animate.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.upwork.com/ab/proposals/*"
      ],
      "js": [
        "content-scripts/upwork.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.freelancer.com/*"
      ],
      "js": [
        "content-scripts/freelancer.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/imgs/icons/icon128.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "host_permissions": [
    "https://*/*"
  ]
}