MaoXian web clipper

Clip information from web page to your local machine to avoid information invalidation. Save as HTML or Markdown, Pictures or styles will also be saved. free and respect your privacy.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "author": "Mika",
  "version": "0.7.0.4",
  "default_locale": "en",
  "web_accessible_resources": [
    "pages/*",
    "icons/*",
    "css/*",
    "js/*"
  ],
  "permissions": [
    "<all_urls>",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "unlimitedStorage",
    "tabs",
    "downloads",
    "downloads.open"
  ],
  "optional_permissions": [
    "nativeMessaging"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/page-scripts-loader.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "background": {
    "page": "pages/background.html"
  },
  "commands": {
    "slot-0": {
      "description": "__MSG_shortcutSlot0__",
      "suggested_key": {
        "default": "Shift+Alt+O"
      }
    },
    "slot-1": {
      "description": "__MSG_shortcutSlot1__",
      "suggested_key": {
        "default": "Shift+Alt+C"
      }
    },
    "slot-2": {
      "description": "__MSG_shortcutSlot2__",
      "suggested_key": {
        "default": "Shift+Alt+H"
      }
    },
    "slot-3": {
      "description": "__MSG_shortcutSlot3__",
      "suggested_key": {
        "default": "Shift+Alt+M"
      }
    },
    "slot-4": {
      "description": "__MSG_shortcutSlot4__"
    },
    "slot-5": {
      "description": "__MSG_shortcutSlot5__"
    },
    "slot-6": {
      "description": "__MSG_shortcutSlot6__"
    },
    "slot-7": {
      "description": "__MSG_shortcutSlot7__"
    },
    "slot-8": {
      "description": "__MSG_shortcutSlot8__"
    },
    "slot-9": {
      "description": "__MSG_shortcutSlot9__"
    },
    "clip-as-default": {
      "description": "__MSG_commandDeprecated__"
    },
    "clip-as-html": {
      "description": "__MSG_commandDeprecated__"
    },
    "clip-as-md": {
      "description": "__MSG_commandDeprecated__"
    },
    "open-clipping": {
      "description": "__MSG_commandDeprecated__"
    }
  },
  "icons": {
    "16": "icons/mx-wc-16.png",
    "32": "icons/mx-wc-32.png",
    "48": "icons/mx-wc-48.png",
    "128": "icons/mx-wc-128.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "__MSG_extensionDefaultTooltip__",
    "default_popup": "pages/popup.html",
    "default_icon": {
      "16": "icons/mx-wc-16.png",
      "32": "icons/mx-wc-32.png",
      "48": "icons/mx-wc-48.png"
    },
    "theme_icons": [
      {
        "light": "icons/mx-wc-16-light.png",
        "dark": "icons/mx-wc-16.png",
        "size": 16
      },
      {
        "light": "icons/mx-wc-32-light.png",
        "dark": "icons/mx-wc-32.png",
        "size": 32
      },
      {
        "light": "icons/mx-wc-48-light.png",
        "dark": "icons/mx-wc-48.png",
        "size": 48
      }
    ]
  },
  "applications": {
    "gecko": {
      "id": "{7deb155c-e51d-4bbb-a904-37dec499340c}"
    }
  }
}