PageDigest

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

What is PageDigest?

PageDigest is a Chrome extension developed by ana_eisberg, and its main feature is "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.".

Extension Screenshots

screenshot

Download PageDigest Extension CRX File

Download PageDigest extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        About
Displays total number of headings, paragraphs, blocks, text to HTML ratio and time to read.
Time to read is based on an average reading speed, which is typically between 200 and 300 words per minute. In the extension it is hardcoded to 200 words per minute.

Motivation
I wanted to try out creating my first Chrome extension and needed a simple SEO utility. 

Suggestions
Please send me your suggestions and report issues to Github.                    

Extension Basic Information

Name PageDigest PageDigest
ID maalbmdhcneklfnppmlbhileahnmflpa
Official URL https://chromewebstore.google.com/detail/pagedigest/maalbmdhcneklfnppmlbhileahnmflpa
Description Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.
File Size 442 KB
Installation Count 88
Current Version 1.0.1
Last Updated 2023-02-16
Publish Date 2023-02-15
Rating 5.00/5 Total 1 Ratings
Developer ana_eisberg
Email [email protected]
Payment Type free
Extension Website https://github.com/eisberg-labs/pagedigest
Help Page URL https://github.com/eisberg-labs/pagedigest/issues
Privacy Policy Page URL https://www.eisberg-labs.com/privacy-policy
Supported Languages en-US
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 ",
    "homepage_url": "https:\/\/github.com\/eisberg-labs\/pagedigest",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Page Digest"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    }
}