PageDigest

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

O que é PageDigest?

PageDigest é uma extensão do Chrome desenvolvida por ana_eisberg, e sua principal característica é "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PageDigest

Baixe arquivos de extensão PageDigest no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PageDigest PageDigest
ID maalbmdhcneklfnppmlbhileahnmflpa
URL Oficial https://chromewebstore.google.com/detail/pagedigest/maalbmdhcneklfnppmlbhileahnmflpa
Descrição Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.
Tamanho do Arquivo 442 KB
Contagem de Instalações 88
Versão Atual 1.0.1
Última Atualização 2023-02-16
Data de Publicação 2023-02-15
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor ana_eisberg
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/eisberg-labs/pagedigest
URL da Página de Ajuda https://github.com/eisberg-labs/pagedigest/issues
URL da Página de Política de Privacidade https://www.eisberg-labs.com/privacy-policy
Idiomas Suportados 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"
    }
}