TLDR - Free Summarize Tool - Text Shortener - Essay Summarizer

TLDR - Free Summarize Tool - Text Shortener - Essay Summarizer

Automatically summarize articles, blogs, and papers instantly. Great for studying and browsing.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TLDR - Free Summarize Tool - Text Shortener - Essay Summarizer",
  "version": "1.5.2",
  "description": "Automatically summarize articles, blogs, and papers instantly. Great for studying and browsing.",
  "permissions": [
    "contextMenus",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ExtPay.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "custom-style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/chat.png",
        "images/icon500.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}