Luckydog Winner Generator Tool 2020

Luckydog Winner Generator Tool 2020

Parse FB comments/reactions/shares and import them into Luckydog Winner Generator

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Luckydog Winner Generator Tool 2020",
  "description": "Parse FB comments/reactions/shares and import them into Luckydog Winner Generator",
  "version": "4.3.0",
  "default_locale": "en",
  "page_action": {
    "default_popup": "popup.html",
    "default_title": "Luckydog Extension"
  },
  "icons": {
    "16": "logo-small.png",
    "128": "logo-large.png"
  },
  "background": {
    "scripts": [
      "jquery-3.2.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "content_facebook.js"
      ]
    },
    {
      "matches": [
        "*://localhost/*",
        "*://*.luckydog.tw/*"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "bootstrap-4.0.0.min.js",
        "content_luckydog.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "jquery-3.2.1.min.js"
  ],
  "permissions": [
    "tabs",
    "declarativeContent"
  ]
}