ZaX - Tiện ích mở rộng cho Zalo

ZaX - Tiện ích mở rộng cho Zalo

Tắt mã hóa đầu cuối Zalo, Zalo dark mode, xem tin bị thu hồi/ xóa, chặn đã xem, đã nhận, đang soạn tin,..

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ZaX - Tiện ích mở rộng cho Zalo",
  "version": "23.7.1",
  "description": "__MSG_appDesc__",
  "default_locale": "vi",
  "author": "ZaX Lab",
  "homepage_url": "http://zaxapp.org",
  "icons": {
    "16": "images/popup/zax-icon-16.png",
    "32": "images/popup/zax-icon-32.png",
    "48": "images/popup/zax-icon-48.png",
    "128": "images/popup/zax-icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.zalo.me/*"
      ],
      "run_at": "document_end",
      "css": [
        "css/embed-app/zax.css"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "commands": {
    "Ctrl+M": {
      "suggested_key": {
        "default": "Ctrl+M",
        "mac": "Command+M"
      },
      "description": "Reload ZaX Extension"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "scripting",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://chat.zalo.me/*",
    "*://id.zalo.me/*",
    "*://*.zaxapp.org/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules_block_typing",
        "enabled": false,
        "path": "rules/rules_block_typing.json"
      },
      {
        "id": "rules_block_seen",
        "enabled": false,
        "path": "rules/rules_block_seen.json"
      },
      {
        "id": "rules_block_delivered",
        "enabled": false,
        "path": "rules/rules_block_delivered.json"
      },
      {
        "id": "rules_block_online",
        "enabled": false,
        "path": "rules/rules_block_online.json"
      }
    ]
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "images/popup/zax-icon-16.png",
      "32": "images/popup/zax-icon-32.png",
      "48": "images/popup/zax-icon-48.png",
      "128": "images/popup/zax-icon-128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "js/embed-app/zax.js"
      ],
      "matches": [
        "*://chat.zalo.me/*"
      ]
    }
  ]
}