Dao Tao 1 Click

Dao Tao 1 Click

Đăng nhập vào trang đào tạo với 1 click chuột

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dao Tao 1 Click",
  "description": "Đăng nhập vào trang đào tạo với 1 click chuột",
  "version": "1.4",
  "browser_action": {
    "default_icon": "icon16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://sv.dut.udn.vn/*",
        "http://daotao.ufl.udn.vn/sv/*"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "http://sv.dut.udn.vn/",
    "storage"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}