Yun Dong SpaceOne

Yun Dong SpaceOne

YDMDM is built on top of Google admin panel to manage the chromebook device in faster and easier way with usage statistics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.1.3",
  "description": "__MSG_extDescription__",
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "identity",
    "identity.email",
    "scripting",
    "notifications",
    "enterprise.deviceAttributes"
  ],
  "incognito": "split",
  "host_permissions": [
    "*://*/*"
  ],
  "author": "gtrainers",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.bundle.js"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/lock.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "oauth2": {
    "client_id": "247461860271-m1h3lgpf22hf4f9qapekglctqqqan6tk.apps.googleusercontent.com",
    "scopes": [
      "profile",
      "email"
    ]
  }
}