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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}