抽獎小幫手

抽獎小幫手

用來讀取Facebook社團貼文留言、社團貼文按讚、貼文分享人數,自動且快速完成抽獎活動。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "抽獎小幫手",
  "description": "用來讀取Facebook社團貼文留言、社團貼文按讚、貼文分享人數,自動且快速完成抽獎活動。",
  "version": "3.9.9",
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "https://*.facebook.com/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/icon_16.png",
      "32": "img/icon_32.png",
      "48": "img/icon_48.png",
      "128": "img/icon_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "css": [
        "css/fb_content.css"
      ],
      "js": [
        "vendor/jquery.min.js",
        "js/fb_content.js"
      ]
    },
    {
      "matches": [
        "https://*.luckyhelpers.com/*"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/fb_script.js"
      ],
      "matches": [
        "https://*.facebook.com/*"
      ]
    }
  ],
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "manifest_version": 3
}