LinkedIn Poll Extractor

LinkedIn Poll Extractor

An extension to help you extract and download the results from your polls from Linkedin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "An extension to help you extract and download the results from your polls from Linkedin. ",
  "version": "1.2.43",
  "manifest_version": 3,
  "name": "LinkedIn Poll Extractor",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "128.png"
  },
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "128.png",
        "48.png",
        "32.png",
        "16.png"
      ],
      "matches": []
    }
  ],
  "host_permissions": [
    "https://www.linkedin.com/*"
  ]
}