Simplify Sync

Simplify Sync

Track job postings

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Simplify Sync",
  "version": "1.1",
  "description": "Track job postings",
  "action": {
    "default_icon": {
      "16": "q.png",
      "48": "q.png",
      "128": "q.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "q.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/SimplifyJobs/Summer2024-Internships*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}