Live Data

Live Data

Live Data Chrome Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Live Data",
  "short_name": "Live Data",
  "version": "1.0.15",
  "description": "Live Data Chrome Extension",
  "permissions": [
    "tabs",
    "webRequest",
    "storage"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Live Data"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{6fbadb5e-94c7-ba48-b4d6-4b42c34a99b3}",
      "strict_min_version": "42.0"
    }
  },
  "icons": {
    "16": "assets/icon_16x16.png",
    "19": "assets/icon_19x19.png",
    "38": "assets/icon_38x38.png",
    "48": "assets/icon_48x48.png",
    "128": "assets/icon_128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "contentPage.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "scripts": []
  },
  "content_security_policy": "script-src 'self' https://*.linkedin.com https://*.licdn.com 'unsafe-eval'; object-src 'self'"
}