LinkedIn Viewer

LinkedIn Viewer

RanBOT - LinkedIn Viewer is Smartest Linkedin Pages Scraper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LinkedIn Viewer",
  "version": "0.1.0",
  "description": "RanBOT - LinkedIn Viewer is Smartest Linkedin Pages Scraper",
  "author": "Encore Shao",
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*",
        "https://*.ranbot.online/*"
      ],
      "js": [
        "main.js",
        "content.js"
      ],
      "css": [
        "main.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png"
    },
    "default_title": "RanBOT - LinkedIn Viewer"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icon*.png",
        "*.js.map"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "action",
    "clipboardRead",
    "clipboardWrite",
    "notifications"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}