PageDigest

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

Cos'è PageDigest?

PageDigest è un'estensione di Chrome sviluppata da ana_eisberg, e la sua funzione principale è "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PageDigest

Scarica i file di estensione PageDigest in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PageDigest PageDigest
ID maalbmdhcneklfnppmlbhileahnmflpa
URL Ufficiale https://chromewebstore.google.com/detail/pagedigest/maalbmdhcneklfnppmlbhileahnmflpa
Descrizione Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.
Dimensione del File 442 KB
Conteggio Installazioni 88
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-02-16
Data di Pubblicazione 2023-02-15
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore ana_eisberg
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/eisberg-labs/pagedigest
URL della Pagina di Aiuto https://github.com/eisberg-labs/pagedigest/issues
URL della Pagina della Politica sulla Privacy https://www.eisberg-labs.com/privacy-policy
Lingue Supportate 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"
    }
}