MarkBook

MarkBook

Mark, highlight and arrange your favor words and images on web page, and export as PPT to share with your friends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "version": "1.0.8",
  "description": "__MSG_description__",
  "author": "Baidi",
  "default_locale": "en",
  "icons": {
    "16": "/img/icon16.png",
    "48": "/img/icon48.png",
    "128": "/img/icon128.png"
  },
  "browser_action": {
    "default_title": "__MSG_title__",
    "default_popup": "popup.html",
    "default_icon": {
      "19": "/img/icon19.png",
      "38": "/img/icon38.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "css": [
        "/content.css"
      ],
      "js": [
        "/lib/jquery.min.js",
        "/lib/md5.min.js",
        "/util/util.js",
        "/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/util/util.js",
      "/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "downloads",
    "notifications"
  ]
}