Proposal Genie

Proposal Genie

Unlock the secret to snagging your dream job with Proposal Genie - the ultimate tool for crafting attention-grabbing cover letters!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Proposal Genie",
  "description": "Unlock the secret to snagging your dream job with Proposal Genie - the ultimate tool for crafting attention-grabbing cover letters!",
  "version": "1.2",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://mdbootstrap.com/*",
    "https://www.upwork.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mdbootstrap.com/docs/standard/extended/textarea/",
        "https://www.upwork.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "34": "./img/icon.png",
      "128": "./img/icon.png"
    }
  },
  "icons": {
    "34": "./img/icon.png",
    "128": "./img/icon.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; img-src 'self' data: chrome-extension:",
    "sandbox": "sandbox allow-scripts allow-forms"
  }
}