LinkeDating - The Dating Extension

LinkeDating - The Dating Extension

The extension will add a little 'heart' icon to every profile picture of its active users in LinkedIn™ feed. A 'heart' in the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LinkeDating - The Dating Extension",
  "version": "1.0.1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "host_permissions": [
    "*://www.linkedin.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.linkedin.com/*"
      ],
      "js": [
        "js/jquery-3.6.0.min.js",
        "js/utils.js",
        "js/storage.js",
        "js/requests.js",
        "js/static.js",
        "js/main.js",
        "js/button.js",
        "js/userList.js",
        "js/content.js",
        "js/marker.js"
      ],
      "css": [
        "css/button.css",
        "css/marker.css",
        "css/userList.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "heart.svg",
        "ghost.svg",
        "logo.svg",
        "logo-dark.svg"
      ],
      "matches": [
        "*://www.linkedin.com/*"
      ]
    }
  ]
}