Article Summary with ChatGPT and Take Notes

Article Summary with ChatGPT and Take Notes

Summarize any webpage or article using ChatGPT. Summary generator for article.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.0.4",
  "icons": {
    "48": "assets/48.png",
    "64": "assets/64.png",
    "128": "assets/128.png"
  },
  "background": {
    "service_worker": "javascripts/worker.js"
  },
  "action": {
    "default_icon": "assets/128.png",
    "default_title": "Article Summary with ChatGPT and Take Notes"
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "popup.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "svgfiles/close.svg",
        "svgfiles/128.png",
        "content.css",
        "popup.css",
        "settings.html",
        "javascripts/setting.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      }
    }
  }
}