InfoCodex Document Summarizer

InfoCodex Document Summarizer

Chapter by chapter summarizing and tagging of large documents

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "InfoCodex Document Summarizer",
  "short_name": "Summarizer",
  "description": "Chapter by chapter summarizing and tagging of large documents",
  "version": "1.2",
  "publisher": "InfoCodex AG semantic technologies",
  "developer": {
    "name": "InfoCodex semantic technologies",
    "url": "https://infocodex.com"
  },
  "homepage_url": "https://docsummarizer.com",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon.png"
  }
}