Engaging Eddie

Engaging Eddie

Engage with your friend's post on a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.1",
  "manifest_version": 2,
  "name": "Engaging Eddie",
  "description": "Engage with your friend's post on a single click.",
  "content_scripts": [
    {
      "matches": [
        "https://mbasic.facebook.com/*",
        "https://www.facebook.com/"
      ],
      "js": [
        "lib/js/browser-polyfill.js",
        "jquery-3.2.1.min.js",
        "moment.min.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "lib/js/browser-polyfill.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "http://*/*",
    "https://*/*",
    "alarms"
  ],
  "icons": {
    "48": "img/48X48.png",
    "128": "img/128X128.png"
  }
}