Sapo GO

Sapo GO

Tính năng mở rộng cho Sapo GO

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Tính năng mở rộng cho Sapo GO",
  "version": "0.1.39",
  "name": "Sapo GO",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon-16.png"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rule",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://shopee.vn/api/*",
    "*://*.facebook.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:8080/*",
        "https://*.mysapogo.com/*",
        "https://*.mysapo.net/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}