Auto Comment & Seeding Groups FB

Auto Comment & Seeding Groups FB

Auto like, comment facebook posts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Comment & Seeding Groups FB",
  "short_name": "A.C.S",
  "default_locale": "en",
  "version": "1.0.2",
  "description": "Auto like, comment facebook posts",
  "icons": {
    "48": "icon.png",
    "96": "icon.png"
  },
  "author": "haibasoft.com",
  "content_security_policy": {},
  "web_accessible_resources": [
    {
      "resources": [
        "run.gif"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "icon.png",
      "24": "icon.png",
      "32": "icon.png"
    },
    "default_title": "FB Groups Seeding",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*qjob=group*"
      ],
      "js": [
        "group.js"
      ],
      "css": [
        "style.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.facebook.com/*qjob=notif*"
      ],
      "js": [
        "notif.js"
      ],
      "css": [
        "style.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.facebook.com/*qjob=feed*"
      ],
      "js": [
        "feed.js"
      ],
      "css": [
        "style.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "tool.js"
      ],
      "css": [
        "tool.css"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "permissions": [
    "unlimitedStorage",
    "https://*.messenger.com/*",
    "https://*.facebook.com/*",
    "https://*.haibasoft.com/*",
    "http://localhost:9490/*"
  ],
  "host_permissions": []
}