Ramped AI - Autofill Job Applications

Ramped AI - Autofill Job Applications

Your personal AI job search assistant. Autofill job applications in seconds, including open-ended questions

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ramped AI - Autofill Job Applications",
  "version": "3.1.2",
  "description": "Your personal AI job search assistant. Autofill job applications in seconds, including open-ended questions",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.jobs.lever.co/*",
        "*://*.boards.greenhouse.io/*"
      ],
      "exclude_matches": [
        "*://*.coda.io/*",
        "*://*.app.rampedcareers.com/*",
        "*://*.staging.app.rampedcareers.com/*",
        "*://*.calendar.google.com/*",
        "*://*.docs.google.com/*",
        "*://*.drive.google.com/*",
        "*://*.mail.google.com/*",
        "*://*.meet.google.com/*",
        "*://*.photos.google.com/*",
        "*://*.play.google.com/*",
        "*://*.zoom.us/*",
        "*://*.slack.com/*",
        "*://*.firebase.google.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "iframe.html",
        "contentScript.js",
        "extLogo.png",
        "sublogo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "./ramped-logo.png",
    "48": "./ramped-logo.png",
    "128": "./ramped-logo.png"
  }
}