flomoplus

flomoplus

从界面到功能,全面提升你的 flomo 使用体验

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "flomoplus",
  "description": "从界面到功能,全面提升你的 flomo 使用体验",
  "version": "2.1.4",
  "browser_action": {
    "default_title": "flomoplus",
    "default_icon": "assets/images/icons/logo.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "notifications",
    "<all_urls>",
    "*://*/"
  ],
  "background": {
    "scripts": [
      "js/chunk-vendors.js",
      "js/chunk-common.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "assets/images/icons/logo.png",
    "48": "assets/images/icons/logo.png",
    "128": "assets/images/icons/logo.png"
  },
  "omnibox": {
    "keyword": "memo"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "assets/js/jquery-3.3.1.min.js",
        "js/chunk-vendors.js",
        "js/chunk-common.js",
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "js/inject.js",
    "assets/images/icons/logo.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}