Article Summarizer

Article Summarizer

This is an article summarizer and paraphraser tool. It will help you in the process of digesting news you're reading on the web.…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Article Summarizer",
  "version": "1.0",
  "description": "",
  "icons": {
    "48": "icons/icon-48.png"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "action": {
    "default_title": "Article Summarizer",
    "default_icon": "icons/icon-48.png",
    "default_popup": "popup/content.html"
  }
}