PageDigest

PageDigest

Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PageDigest",
  "description": "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.",
  "version": "1.0.1",
  "manifest_version": 3,
  "author": "Ana Bujan <[email protected]>",
  "homepage_url": "https://github.com/eisberg-labs/pagedigest",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Page Digest"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png"
  }
}