My Fpoly Extension

My Fpoly Extension

Tiện ích trợ giúp trên hệ thống của trường cao đẳng FPT Polytechnic!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.5",
  "manifest_version": 3,
  "name": "My Fpoly Extension",
  "description": "Tiện ích trợ giúp trên hệ thống của trường cao đẳng FPT Polytechnic!",
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "128": "/images/icon.png"
    }
  },
  "icons": {
    "128": "/images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.poly.edu.vn/*"
      ],
      "run_at": "document_start",
      "js": [
        "js/checked.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.poly.edu.vn/*"
    ]
  },
  "permissions": [
    "management",
    "storage"
  ],
  "host_permissions": [
    "*://*.poly.edu.vn/*"
  ]
}