Summary Box

Summary Box

Instantly summarize any link or webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Summary Box",
  "version": "0.0.0.53",
  "description": "Instantly summarize any link or webpage",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "webNavigation",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "libraries/jquery.min.js",
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "images/*",
        "libraries/query-pdf.js",
        "libraries/pdf.worker.min.js",
        "libraries/ripplet.min.js",
        "panel/*",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/16px.png",
      "32": "images/32px.png",
      "48": "images/48px.png",
      "128": "images/128px.png"
    }
  },
  "icons": {
    "16": "images/16px.png",
    "32": "images/32px.png",
    "48": "images/48px.png",
    "128": "images/128px.png"
  },
  "manifest_version": 3,
  "externally_connectable": {
    "matches": [
      "https://*.summarybox.com/*",
      "http://localhost:3001/*"
    ]
  }
}