ZiyuNote

ZiyuNote

online video note

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_name__",
  "version": "2.2.0",
  "description": "__MSG_pluginDesc__",
  "icons": {
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "64": "img/icon64.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "img/icon64.png",
    "default_title": "子魚笔记"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [
        "css/custom.css"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "web_accessible_resources": [
    "editor.html",
    "setting.html"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "homepage_url": "http://vnote.littlefly.fun/#/",
  "default_locale": "zh_CN",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}