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
公式URL 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
Eメール [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"
    }
}