石墨会议

石墨会议

共享屏幕内容,方便您与屏幕那头的伙伴,随时随地讨论沟通。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "石墨会议",
  "version": "0.0.2",
  "description": "共享屏幕内容,方便您与屏幕那头的伙伴,随时随地讨论沟通。",
  "author": "石墨文档 (shimo.im)",
  "homepage_url": "https://shimo.im",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://localhost/*",
        "*://shimodev.com/*",
        "*://*.shimodev.com/*",
        "*://shimo.run/*",
        "*://*.shimo.run/*",
        "https://shimo.im/*",
        "https://*.shimo.im/*"
      ],
      "js": [
        "content.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://shimodev.com/*",
      "*://*.shimodev.com/*",
      "*://shimo.run/*",
      "*://*.shimo.run/*",
      "https://shimo.im/*",
      "https://*.shimo.im/*"
    ]
  },
  "permissions": [
    "*://localhost/*",
    "*://shimodev.com/*",
    "*://*.shimodev.com/*",
    "*://shimo.run/*",
    "*://*.shimo.run/*",
    "https://shimo.im/*",
    "https://*.shimo.im/*",
    "desktopCapture"
  ]
}