LikeFree

LikeFree

Hide likes on Instagram and Facebook so that you can focus on the bigger picture. Express yourself freely.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LikeFree",
  "description": "Hide likes on Instagram and Facebook so that you can focus on the bigger picture. Express yourself freely.",
  "version": "1.0",
  "author": "Vivek Bhookya",
  "browser_action": {
    "default_icon": "icons/heart-icon-48.png",
    "default_popup": "popup.html",
    "default_title": "LikeFree"
  },
  "icons": {
    "16": "icons/heart-icon-16.png",
    "48": "icons/heart-icon-48.png",
    "128": "icons/heart-icon-128.png"
  },
  "background": {
    "scripts": [
      "MagicalMessages.js",
      "likefree.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*",
        "https://*.facebook.com/*"
      ],
      "js": [
        "MagicalMessages.js",
        "likefree.js"
      ],
      "run_at": "document_end"
    }
  ]
}