Webpage Spell-Check

Instant spell-check on any web page

Webpage Spell-Check란 무엇입니까?

Webpage Spell-Check은(는) https://www.syedgakbar.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instant spell-check on any web page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Webpage Spell-Check 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Are you a web developer, and have ever sent a page to a client with spelling error or typo? Or you are just a cautious one who is afraid to let this happen one day? If yes, then this small extension is just for you.

It lets you check the spelling directly on the web-page in Chrome. This way you can easily identify and fix the errors which gets missed in your favourite HTML editor even when it has also spell-check support. As this uses the Google Chrome spell checker, so it also shows the you corrections for the typo and spelling mistakes and let you edit the typos directly in the web-page.

Not working? More help and tips here:
https://blog.syedgakbar.com/webpage-spell-check-extension/                    

확장 프로그램 기본 정보

이름 Webpage Spell-Check Webpage Spell-Check
ID mgdhaoimpabdhmacaclbbjddhngchjik
공식 URL https://chromewebstore.google.com/detail/webpage-spell-check/mgdhaoimpabdhmacaclbbjddhngchjik
설명 Instant spell-check on any web page
파일 크기 7.63 MB
설치 횟수 33,623
현재 버전 0.3
최근 업데이트 2023-11-18
출시 날짜 2020-03-03
평점 2.79/5 총 81 개의 평점
개발자 https://www.syedgakbar.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://blog.syedgakbar.com/webpage-spell-check-extension/
도움말 페이지 URL https://blog.syedgakbar.com/webpage-spell-check-extension/
개인정보 보호 정책 페이지 URL https://www.syedgakbar.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Webpage Spell-Check",
    "version": "0.3",
    "description": "Instant spell-check on any web page",
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_icon": "default_icon.png",
        "default_title": "Webpage Spell-Check",
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "icon_48.png",
        "128": "icon_48.png"
    },
    "web_accessible_resources": [],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "js\/spellcheck-extension.js"
            ],
            "css": [
                "css\/stylesheet.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}