PageDigest

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

PageDigestคืออะไร?

PageDigest เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ana_eisberg และคุณลักษณะหลักของมันคือ "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PageDigest

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}