书签管理

书签管理

在任何页面都可以通过书签关键字快速搜索打开书签,管理您的书签

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_appName__",
  "version": "0.0.15",
  "default_locale": "zh_CN",
  "description": "__MSG_appDescription__",
  "icons": {
    "128": "static/images/icon128.png"
  },
  "browser_action": {
    "default_icon": "static/images/icon128.png",
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "options_page": "index.html",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+B",
        "mac": "Command+B",
        "chromeos": "Ctrl+B",
        "linux": "Ctrl+B"
      }
    }
  },
  "homepage_url": "https://github.com/zangse/vue-chrome-extension",
  "permissions": [
    "activeTab",
    "bookmarks",
    "tabs",
    "history",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ]
}