F.B Data Scraper - Posts, Comments

F.B Data Scraper - Posts, Comments

Easy data extraction tools of FACEBOOK Posts, Comments

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "F.B Data Scraper - Posts, Comments",
  "description": "Easy data extraction tools of FACEBOOK Posts, Comments",
  "version": "1.4",
  "icons": {
    "48": "icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "functions.js",
        "gethtml.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}