Highlight Word When Double Click

Double click on a word, the other same words in the page are automatically highlighted

Highlight Word When Double Click란 무엇입니까?

Highlight Word When Double Click은(는) qii404에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Double click on a word, the other same words in the page are automatically highlighted"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Highlight Word When Double Click 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Double-click to select a word, the word in other positions on the page will be automatically highlighted

2021.08.04 supports displaying the total number of matches
2020.07.03 The additional selected leading and trailing spaces when double-clicking will not affect the matching
2020.06.04 Add right side preview, similar to ctrl+F right sidebar
2020.05.03 Support iframe highlight
2020.04.13 Click on the extension icon, you can set the highlight function to be temporarily disabled when double-clicking to prevent jams in some large pages
2019.04.12 After selecting the sentence, it can be highlighted by the shortcut key Alt+S~ Press again to cancel the highlight~                    

확장 프로그램 기본 정보

이름 Highlight Word When Double Click Highlight Word When Double Click
ID hiemiigjnmkjedjibioplldlbkhekbjk
공식 URL https://chromewebstore.google.com/detail/highlight-word-when-doubl/hiemiigjnmkjedjibioplldlbkhekbjk
설명 Double click on a word, the other same words in the page are automatically highlighted
파일 크기 35.68 KB
설치 횟수 1,422
현재 버전 0.1.6
최근 업데이트 2021-09-03
출시 날짜 2020-07-03
평점 4.71/5 총 17 개의 평점
개발자 qii404
이메일 [email protected]
결제 유형 free
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_title__",
    "description": "__MSG_description__",
    "version": "0.1.6",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "context.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "http:\/\/*\/",
                "https:\/\/*\/*",
                "https:\/\/*\/"
            ],
            "js": [
                "highLight.js"
            ],
            "css": [
                "highlight.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "48": "48.png",
            "128": "128.png"
        },
        "default_popup": "popup.html"
    },
    "default_locale": "zh_CN",
    "commands": {
        "highlight": {
            "suggested_key": {
                "default": "Alt+S"
            },
            "description": "\u9ad8\u4eae\u9875\u9762\u5185\u5bb9"
        }
    }
}