钉钉助手

钉钉助手

网页版钉钉增强插件

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "钉钉助手",
  "description": "网页版钉钉增强插件",
  "version": "1.2.4",
  "short_name": "dingding",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "sandbox": {
    "pages": [
      "sandbox.html",
      "setting.html",
      "https://jinshuju.net/f/rP1a9p"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://im.dingtalk.com/*",
        "https://im.dingtalk.com/*"
      ],
      "js": [
        "scripts/utils.js",
        "scripts/snapshot.js",
        "scripts/generalPageContent.js",
        "scripts/dingTalkContent.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "styles/content.css"
      ],
      "js": [
        "scripts/utils.js",
        "scripts/snapshot.js",
        "scripts/generalPageContent.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/imgs/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "scripts/inject.js"
      ],
      "matches": [
        "http://im.dingtalk.com/*",
        "https://im.dingtalk.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "background",
    "notifications"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}