Find UID - DM Tools

Find UID - DM Tools

Author: Lê Thanh Tuân

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Find UID - DM Tools",
  "version": "1.0.2",
  "description": "Author: Lê Thanh Tuân",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "default_icon": "logo.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "content_security_policy": "script-src 'self' https://tools.sieudata.com; object-src 'self'; connect-src 'self' https://db.sieudata.com;",
  "content_scripts": [
    {
      "js": [
        "content_scripts.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.sieudata.com/*"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*",
    "https://db.sieudata.com/"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}