LikeNetwork - More likes on Instagram

LikeNetwork - More likes on Instagram

Get more likes on Instagram with the Instagram Likenetwork (Icon made by Freepik from www.flaticon.com)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LikeNetwork - More likes on Instagram",
  "description": "Get more likes on Instagram with the Instagram Likenetwork (Icon made by Freepik from www.flaticon.com)",
  "version": "1.2.5",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://*.instagram.com/*",
    "tabs",
    "activeTab",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.instagram.com/*"
      ],
      "all_frames": true,
      "js": [
        "jquery.min.js",
        "instagram.js"
      ]
    }
  ]
}