PageDigest

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

PageDigest là gì?

PageDigest là một tiện ích mở rộng Chrome được phát triển bởi ana_eisberg, và tính năng chính của nó là "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PageDigest

Tải xuống các tệp mở rộng PageDigest dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PageDigest PageDigest
ID maalbmdhcneklfnppmlbhileahnmflpa
URL Chính Thức https://chromewebstore.google.com/detail/pagedigest/maalbmdhcneklfnppmlbhileahnmflpa
Mô tả Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio.
Kích Thước Tệp 442 KB
Số Lần Cài Đặt 88
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-02-16
Ngày Phát Hành 2023-02-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ana_eisberg
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/eisberg-labs/pagedigest
URL Trang Trợ Giúp https://github.com/eisberg-labs/pagedigest/issues
URL Trang Chính Sách Bảo Mật https://www.eisberg-labs.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}