Emelia

Download our extension to automatically retrieve your LinkedIn session cookies and launch your scrape
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "script.js"
      ],
      "matches": [
        "http://localhost:3000/*",
        "https://*.emelia.io/*",
        "https://www.linkedin.com/*",
        "https://linkedin.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Download our extension to automatically retrieve your LinkedIn session cookies and launch your scrape",
  "host_permissions": [
    "https://www.linkedin.com/*",
    "https://linkedin.com/*",
    "https://app.emelia.io/*",
    "http://localhost:3000/*"
  ],
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 3,
  "name": "Emelia",
  "permissions": [
    "cookies",
    "tabs",
    "webNavigation",
    "declarativeNetRequest"
  ],
  "version": "1.2.6",
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  }
}