Summarize

Summarize

Summarize is a tool to extract the key ideas and takeaways from any web page in the Internet. Just select the text you want to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Summarize",
  "version": "1.0.2",
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": {
      "16": "icons/icono-plugin-16.png",
      "48": "icons/icono-plugin-48.png",
      "128": "icons/icono-plugin-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icono-plugin-16.png",
    "48": "icons/icono-plugin-48.png",
    "128": "icons/icono-plugin-128.png"
  }
}