PageDigest

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

什麼是PageDigest?

PageDigest是由ana_eisberg開發的Chrome擴展程式,該擴展的主要功能是“Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.”。

擴展截圖

screenshot

下載PageDigest擴展crx文件

下載PageDigest擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 PageDigest PageDigest
ID maalbmdhcneklfnppmlbhileahnmflpa
官方網址 https://chromewebstore.google.com/detail/pagedigest/maalbmdhcneklfnppmlbhileahnmflpa
簡介 Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.
檔案大小 442 KB
安裝次數 88
目前版本 1.0.1
更新時間 2023-02-16
上架時間 2023-02-15
評分 5.00/5 共 1 次評分
開發者 ana_eisberg
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/eisberg-labs/pagedigest
說明頁面URL https://github.com/eisberg-labs/pagedigest/issues
隱私政策頁面URL https://www.eisberg-labs.com/privacy-policy
支援的語言 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"
    }
}