Weibo Data Scraper - Posts, Comments

Weibo Data Scraper - Posts, Comments

Weibo - Easy data extraction tools of 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": "Weibo Data Scraper - Posts, Comments",
  "description": "Weibo - Easy data extraction tools of Posts, Comments",
  "version": "2.1",
  "icons": {
    "48": "icon.jpg"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "functions.js",
        "gethtml.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}