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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/eisberg-labs/pagedigest/issues
عنوان صفحة سياسة الخصوصية 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"
    }
}