Homerun Talent Clipper

Homerun Talent Clipper

Scout talent directly from social media to Homerun.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Homerun Talent Clipper",
  "description": "Scout talent directly from social media to Homerun.",
  "version": "2.1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "/icons/icon_16.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://admin.homerun.co/",
    "https://app.homerun.co/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/GT-America-Standard-Regular.otf",
        "/fonts/GT-Walsheim-Ultra-Bold.ttf",
        "/images/homerun-button.png",
        "/images/homerun-logo.png",
        "content.html",
        "site_identifiers.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "/icons/icon_16.png",
    "32": "/icons/icon_32.png",
    "48": "/icons/icon_48.png",
    "128": "/icons/icon_128.png"
  }
}