PageDigest

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

Wat is PageDigest?

PageDigest is een Chrome-extensie ontwikkeld door ana_eisberg, en de belangrijkste functie is "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie PageDigest

Download PageDigest-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PageDigest PageDigest
ID maalbmdhcneklfnppmlbhileahnmflpa
Officiële URL https://chromewebstore.google.com/detail/pagedigest/maalbmdhcneklfnppmlbhileahnmflpa
Beschrijving Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.
Bestandsgrootte 442 KB
Aantal Installaties 88
Huidige Versie 1.0.1
Laatst Bijgewerkt 2023-02-16
Publicatiedatum 2023-02-15
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar ana_eisberg
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/eisberg-labs/pagedigest
Help Pagina-URL https://github.com/eisberg-labs/pagedigest/issues
URL van de Privacybeleid Pagina https://www.eisberg-labs.com/privacy-policy
Ondersteunde Talen 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"
    }
}