GitNote 收藏

GitNote 收藏

使用 GitNote 扩展程序保存任何网页内容到你的笔记中.

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_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "0.1.3",
  "web_accessible_resources": [
    "pages/*"
  ],
  "permissions": [
    "*://*/*",
    "webRequest",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "default_locale": "zh_CN",
  "icons": {
    "16": "icons/icon.png",
    "32": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "browser_action": {
    "browser_style": true,
    "default_title": "__MSG_extensionName__"
  }
}