Highlight all on dblclick

Highlight all words in websites with one doubleclick

Highlight all on dblclick란 무엇입니까?

Highlight all on dblclick은(는) Trinitas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight all words in websites with one doubleclick"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Highlight all on dblclick 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Highlight all words in websites with one double click.

1: Click the icon so it becoms green, now it's ready. 
2: Go to some page and double click a word, it will become hightlighted and the rest matching words.
3: Click icon again so it becoms red to erase all highlighted words. 

!!! Only tested in Chrome and dosen't work in all websites !!!
Enjoy                    

확장 프로그램 기본 정보

이름 Highlight all on dblclick Highlight all on dblclick
ID ibbikoelnlhphegnjbojfeokpcneaohg
공식 URL https://chrome.google.com/webstore/detail/highlight-all-on-dblclick/ibbikoelnlhphegnjbojfeokpcneaohg
설명 Highlight all words in websites with one doubleclick
파일 크기 87.89 KB
설치 횟수 559
현재 버전 0.2
최근 업데이트 2016-11-06
출시 날짜 2016-11-06
평점 3.95/5 총 19 개의 평점
개발자 Trinitas
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlight all on dblclick",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Highlight all words in websites with one doubleclick",
    "icons": {
        "16": "img\/highlight16.png",
        "128": "img\/highlight128.png"
    },
    "browser_action": [],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/highlight.js"
            ]
        }
    ],
    "minimum_chrome_version": "20",
    "permissions": [
        "windows",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}