Post Likers Inviter

Post Likers Inviter

Click all the Invite buttons at the same time to invite all post likers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Post Likers Inviter",
  "short_name": "Fans Inviter",
  "version": "3.01",
  "manifest_version": 2,
  "description": "Click all the Invite buttons at the same time to invite all post likers",
  "homepage_url": "http://geongeorge.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "src/bg/background.js",
      "src/inject/inject.js",
      "src/jquery/jquery-3.2.1.min.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Boosted post inviter",
    "default_popup": "src/page_action/page_action.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "src/inject/inject.js",
        "src/jquery/jquery-3.2.1.min.js"
      ]
    }
  ]
}