IMAKITA AI text summarizer

IMAKITA AI text summarizer

IMAKITA summarizes long and boring text effectively

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IMAKITA AI text summarizer",
  "version": "0.0.2",
  "default_locale": "en",
  "manifest_version": 3,
  "description": "IMAKITA summarizes long and boring text effectively",
  "permissions": [
    "contextMenus",
    "clipboardWrite",
    "storage",
    "tabs",
    "activeTab"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "icons": {
    "16": "img/icon-16x16.png",
    "48": "img/icon-48x48.png",
    "128": "img/icon-128x128.png"
  },
  "action": {
    "default_icon": "img/icon-16x16.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.3.1.min.js",
        "jquery.highlight-5.js",
        "lang_detect.js",
        "stop_words.js",
        "imakita_body.js",
        "preproc_en.js",
        "tiny_segmenter-0.2.js",
        "preproc_ja.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}