Leanote 记录, 随时随地用Leanote记录知识!

Leanote 记录, 随时随地用Leanote记录知识!

Leanote 记录, Chrome插件, 随时随地用Leanote记录知识!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup.html",
    "default_title": "Leanote 记录, 随时随地用Leanote记录知识!"
  },
  "description": "Leanote 记录, Chrome插件, 随时随地用Leanote记录知识!",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "25",
  "name": "Leanote 记录, 随时随地用Leanote记录知识!",
  "options_page": "options.html",
  "permissions": [
    "bookmarks",
    "tabs",
    "storage",
    "chrome://favicon/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery-1.9.0.min.js",
        "js/main.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "frame.html"
  ],
  "version": "0.2"
}