Bytedance Slide Copy/Paste Helper

Bytedance Slide Copy/Paste Helper

Bytedance Slide Copy/Paste Helper

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "manifest_version": 2,
  "minimum_chrome_version": "43",
  "name": "__MSG_extDesc__",
  "description": "__MSG_extDesc__",
  "default_locale": "zh_CN",
  "externally_connectable": {
    "matches": [
      "http://localhost:3001/*",
      "https://docs.bytedance.net/*",
      "https://docs-staging.bytedance.net/*",
      "https://bear-test.bytedance.net/*",
      "https://feishu.cn/*",
      "https://*.feishu.cn/*",
      "https://larksuite.com/*",
      "https://*.larksuite.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost:3001/*",
        "https://docs.bytedance.net/*",
        "https://docs-staging.bytedance.net/*",
        "https://bear-test.bytedance.net/*",
        "https://feishu.cn/*",
        "https://*.feishu.cn/*",
        "https://larksuite.com/*",
        "https://*.larksuite.com/*"
      ],
      "js": [
        "./content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "permissions": [
    "clipboardRead",
    "clipboardWrite",
    "http://localhost:3001/*",
    "https://docs.bytedance.net/*",
    "https://docs-staging.bytedance.net/*",
    "https://bear-test.bytedance.net/*",
    "https://feishu.cn/*",
    "https://*.feishu.cn/*",
    "https://larksuite.com/*",
    "https://*.larksuite.com/*"
  ],
  "version": "1.3"
}