Career.io: Job Search Tracker

Career.io: Job Search Tracker

The easiest way to save job opportunities from anywhere on the web!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Career.io: Job Search Tracker",
  "description": "The easiest way to save job opportunities from anywhere on the web!",
  "version": "0.0.13",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Open Resume Tracker",
    "default_popup": "app.html?popup=true"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.html",
        "*.css",
        "icon128.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "icon128.png"
  }
}