PageDigest

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

PageDigest क्या है?

PageDigest ana_eisberg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get a quick summary of any web page with PageDigest: word count, characters, read time, text to HTML ratio."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PageDigest एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
    }
}