YouYoung

YouYoung

Build a Notebook!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_pluginName__",
  "version": "2.0.5",
  "description": "__MSG_pluginDesc__",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "unlimitedStorage",
    "file://*/*",
    "contextMenus",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "extension/content.js"
      ],
      "css": [
        "extension/content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "extension/background.js"
  },
  "action": {
    "default_popup": "extension/popup.html",
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    },
    "default_title": "YouYoung"
  },
  "options_ui": {
    "page": "extension/options.html",
    "open_in_tab": true
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "zh_CN",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}