Raftwise

Raftwise

Grow your LinkedIn presence faster. Better.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Raftwise",
  "description": "Grow your LinkedIn presence faster. Better.",
  "version": "1.4.1",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "cookies",
    "webRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://linkedin.com/*",
        "https://*.linkedin.com/*",
        "https://raftwise.com/*",
        "https://app.raftwise.com/*",
        "https://raftwise.raftlabs.dev/*",
        "https://app.raftwise.raftlabs.dev/*",
        "https://www.raftwise.com/*",
        "https://www.app.raftwise.com/*",
        "https://www.raftwise.raftlabs.dev/*",
        "https://www.app.raftwise.raftlabs.dev/*"
      ],
      "js": [
        "./contentScripts/linkedIn.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "host_permissions": [
    "https://*.linkedin.com/*"
  ],
  "action": {
    "default_icon": "./icons/logo-128.png",
    "default_popup": "page/index.html"
  },
  "icons": {
    "16": "./icons/logo-16.png",
    "48": "./icons/logo-48.png",
    "128": "./icons/logo-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "contentScripts/ui/assets/*",
        "contentScripts/ui/assets/**/*",
        "contentScripts/ui/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}