Wordtune Read: AI-powered Summary Tool

Wordtune Read: AI-powered Summary Tool

AI summarizer making every long story - short.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.0.26",
  "description": "AI summarizer making every long story - short.",
  "icons": {
    "48": "media/logo-48.png",
    "128": "media/logo-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "media/OpenSans.css",
        "media/SofiaPro.css",
        "media/Inter.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "cookies",
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "*://*/*",
    "https://*.wordtune.com/*"
  ],
  "action": {
    "default_icon": {
      "48": "media/logo-48-g.png"
    },
    "default_title": "Summarize with Wordtune Read"
  },
  "minimum_chrome_version": "88",
  "web_accessible_resources": [
    {
      "resources": [
        "media/*.png",
        "media/*.woff",
        "media/*.woff2",
        "media/*.css",
        "media/*.ttf"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "name": "Wordtune Read: AI-powered Summary Tool",
  "externally_connectable": {
    "matches": [
      "https://app.wordtune.com/*",
      "https://www.wordtune.com/*"
    ]
  }
}