Radar

Radar

Radar helps you stay connected, and automatically receive important updates without having to scroll through a noisy LinkedIn feed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Radar",
  "version": "1.1.4",
  "description": "Radar helps you stay connected, and automatically receive important updates without having to scroll through a noisy LinkedIn feed.",
  "permissions": [
    "activeTab",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "images/Radar_16.png",
      "32": "images/Radar_32.png",
      "48": "images/Radar_48.png",
      "128": "images/Radar_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/Radar_16.png",
    "32": "images/Radar_32.png",
    "48": "images/Radar_48.png",
    "128": "images/Radar_128.png"
  },
  "web_accessible_resources": [
    "contentScript.js"
  ],
  "manifest_version": 2
}