Pinbox - 跨平台收藏

Pinbox - 跨平台收藏

将散落各地的内容集中在一处

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Pinbox - 跨平台收藏",
  "version": "3.7.0",
  "manifest_version": 2,
  "description": "将散落各地的内容集中在一处",
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_title": "Pinbox"
  },
  "homepage_url": "https://microsoftedge.microsoft.com/addons/detail/lhikococflpkoiaigndpmmmkeohibeai",
  "omnibox": {
    "keyword": "p"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "cookies",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ]
    }
  ],
  "icons": {
    "16": "img/logo_16.png",
    "32": "img/logo_32.png",
    "48": "img/logo.png",
    "128": "img/logo_128.png"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "mac": "Command+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S"
      }
    },
    "save_text": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "windows": "Ctrl+Shift+1",
        "mac": "Command+Shift+1",
        "chromeos": "Ctrl+Shift+1",
        "linux": "Ctrl+Shift+1"
      },
      "description": "收藏选中文字"
    },
    "toggle_sidebar": {
      "suggested_key": {
        "default": "Ctrl+Shift+2",
        "windows": "Ctrl+Shift+2",
        "mac": "Command+Shift+2",
        "chromeos": "Ctrl+Shift+2",
        "linux": "Ctrl+Shift+2"
      },
      "description": "显示/隐藏侧边栏"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "web_accessible_resources": [
    "img/logo.png",
    "save.html",
    "js/save.js",
    "sidebar.html",
    "js/sidebar.js"
  ]
}