Zface - công cụ chuyển đổi SĐT từ UID

Zface - công cụ chuyển đổi SĐT từ UID

Lấy số điện thoại từ bình luận, từ uid, tra cứu số điện thoại tìm uid

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zface - công cụ chuyển đổi SĐT từ UID",
  "short_name": "Lấy số nhanh",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Lấy số điện thoại từ bình luận, từ uid, tra cứu số điện thoại tìm uid",
  "icons": {
    "16": "images/16-icon.png",
    "32": "images/32-icon.png",
    "64": "images/64-icon.png",
    "128": "images/128-icon.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/16-icon.png",
      "32": "images/32-icon.png",
      "64": "images/64-icon.png",
      "128": "images/128-icon.png"
    },
    "default_title": "LZface - công cụ chuyển đổi SĐT từ UID",
    "default_popup": "popup.html"
  },
  "omnibox": {
    "keyword": "uid, phone"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "scripts/jquery.min.js",
        "scripts/config.js",
        "scripts/contentscript.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "scripts/*",
    "images/*"
  ],
  "permissions": [
    "https://*.facebook.com/*",
    "https://zface.work/*"
  ]
}