send2boox

send2boox

使用send2boox浏览器扩展可将网页(可生成pdf)推送到boox帐户 Use the send2boox browser extension to push the webpage (can generate pdf) to the boox account

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_extName__",
  "homepage_url": "http://localhost:8080/",
  "description": "使用send2boox浏览器扩展可将网页(可生成pdf)推送到boox帐户\nUse the send2boox browser extension to push the webpage (can generate pdf) to the boox account",
  "default_locale": "en",
  "permissions": [
    "notifications",
    "printerProvider",
    "activeTab",
    "<all_urls>",
    "*://*/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "minimum_chrome_version": "62",
  "version": "0.3.2",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}