Startup Tracker

Startup Tracker

Get insights into startups, their valuations, funding rounds, news and important contacts to enhance your job search experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Startup Tracker",
  "description": "Get insights into startups, their valuations, funding rounds, news and important contacts to enhance your job search experience.",
  "version": "1.9.2",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_icon": "128_icon.png",
    "default_title": "Startup Tracker"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "16_icon.png",
    "32": "32_icon.png",
    "48": "48_icon.png",
    "128": "128_icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}