Mentorservice Screen Sharing(화면 공유 확장 프로그램)

Mentorservice Screen Sharing(화면 공유 확장 프로그램)

Mentorservice.co.kr에서 화면 공유를 위한 확장프로그램입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mentorservice Screen Sharing(화면 공유 확장 프로그램)",
  "author": "Wooksung Media Inc.",
  "version": "3.5",
  "manifest_version": 2,
  "minimum_chrome_version": "34",
  "description": "Mentorservice.co.kr에서 화면 공유를 위한 확장프로그램입니다.",
  "homepage_url": "https://mentorservice.co.kr",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "matches": [
        "https://mentorservice.co.kr/*"
      ]
    }
  ],
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "desktopCapture"
  ],
  "web_accessible_resources": [
    "icon.png"
  ]
}