Web Highlighter

This extension will help you store and highlight phrases or chunks of text, and add description if needed.

Web Highlighter란 무엇입니까?

Web Highlighter은(는) jfernando0911에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will help you store and highlight phrases or chunks of text, and add description if needed."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Web Highlighter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Web higlighter is an extension for chrome that helps you highlight words, phrases or chunks of text. You can add descriptions, translation or any kind of details to the highlights. Everytime you find a word on the web that you saved in your database it will be highlighted with their respective details, descriptions or details.

This extension was heavily inspired by lingq and learning with texts.                    

확장 프로그램 기본 정보

이름 Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
공식 URL https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
설명 This extension will help you store and highlight phrases or chunks of text, and add description if needed.
파일 크기 261 KB
설치 횟수 3,629
현재 버전 0.3.3
최근 업데이트 2020-07-17
출시 날짜 2020-06-01
평점 3.71/5 총 7 개의 평점
개발자 jfernando0911
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Highlighter",
    "description": "This extension will help you store and highlight phrases or chunks of text, and add description if needed.",
    "version": "0.3.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "highlightStyle.css"
            ],
            "js": [
                "mark.es6.min.js",
                "contentScript.js",
                "Functions.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Web Highlighter"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "Functions.js",
            "backgroundScript.js"
        ]
    }
}