LightNote

LightNote

LightNote 是一款在网页里标记重要信息,并支持收藏、评论、分类搜索管理的浏览器插件。(目前只支持 macOS 平台)

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LightNote",
  "version": "1.0.3.2",
  "author": "hite<[email protected]>",
  "description": "LightNote 是一款在网页里标记重要信息,并支持收藏、评论、分类搜索管理的浏览器插件。(目前只支持 macOS 平台)",
  "permissions": [],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "toolTips.js"
      ],
      "css": [
        "toolTips.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/toolbar-icon-16.png",
      "32": "images/toolbar-icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "icons": {
    "16": "images/toolbar-icon-16.png",
    "32": "images/toolbar-icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2
}