WPM - Typing Everywhere

A cool extension for calculating wpm everywhere

WPM - Typing Everywhere란 무엇입니까?

WPM - Typing Everywhere은(는) https://lyricstype.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A cool extension for calculating wpm everywhere"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

WPM - Typing Everywhere 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Detect every typing in the browser and provide WPM calculate number,
Choose every text in the browser and type it!                    

확장 프로그램 기본 정보

이름 WPM - Typing Everywhere WPM - Typing Everywhere
ID ielbakjmldnkipkikkihbfcfcbalkilj
공식 URL https://chromewebstore.google.com/detail/wpm-typing-everywhere/ielbakjmldnkipkikkihbfcfcbalkilj
설명 A cool extension for calculating wpm everywhere
파일 크기 100 KB
설치 횟수 84
현재 버전 1.0.4
최근 업데이트 2023-01-03
출시 날짜 2022-12-21
평점 4.56/5 총 9 개의 평점
개발자 https://lyricstype.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://lyricstype.com
도움말 페이지 URL https://lyricstype.com/blog
개인정보 보호 정책 페이지 URL https://lyricstype.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WPM - Typing Everywhere",
    "version": "1.0.4",
    "description": "A cool extension for calculating wpm everywhere",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ],
    "icons": {
        "16": "assets\/logo.png",
        "48": "assets\/logo-48.png",
        "128": "assets\/logo-128.jpg"
    },
    "manifest_version": 3,
    "author": "SGSystems",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "assets\/logo.png",
            "24": "assets\/logo.png",
            "32": "assets\/logo.png"
        },
        "default_title": "WPM Extention",
        "default_popup": "bootstrap.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.stackoverflow.com\/*",
                "https:\/\/*.com\/*",
                "https:\/\/*.net\/*",
                "https:\/\/*.io\/*",
                "https:\/\/*.us\/*",
                "http:\/\/*.com\/*",
                "https:\/\/*.co.il\/*",
                "http:\/\/*.co.il\/*",
                "https:\/\/*.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css",
                "button.css"
            ]
        }
    ]
}