rule5

rule5

Extension for sales teams to learn about their prospective customers and key people to engage with.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "rule5",
  "description": "Extension for sales teams to learn about their prospective customers and key people to engage with.",
  "version": "2.4.3",
  "manifest_version": 3,
  "host_permissions": [
    "https://dev-api.rule5.io/*",
    "https://api.rule5.io/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "css": [
        "css/linkedin-integrated-sharing.css"
      ],
      "js": [
        "js/jquery-3.6.3.min.js",
        "js/linkedin-integrated-sharing.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "action": {
    "default_popup": "index.html",
    "action": {
      "default_popup": "index.html",
      "default_icon": {
        "16": "/images/icon_16.png",
        "32": "/images/icon_32.png",
        "48": "/images/icon_48.png",
        "128": "/images/icon_128.png"
      }
    }
  },
  "icons": {
    "16": "/images/icon_16.png",
    "32": "/images/icon_32.png",
    "48": "/images/icon_48.png",
    "128": "/images/icon_128.png"
  }
}