QuickSearch

Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.

QuickSearch란 무엇입니까?

QuickSearch은(는) kevin.kik.lee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab."입니다.

확장 프로그램 스크린샷

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

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

확장 프로그램 사용 설명서

                        - Cmd/Ctrl+Click to search in a new tab
- Cmd/Ctrl+Shft+Click to focus the new tab.
- Free and open-source forever
- A keyboard shortcut is coming soon

------------------------------------------------------------

Highlighting text, then right-clicking and selecting "Search Google for..." is an action I have conducted repeatedly throughout the day, every single day for probably a decade. I wanted to simplify the process by writing a small Chrome extension.

There is one more major functionality I would like to add (adding a keyboard shortcut), but all other changes will be related to maintenance and refactoring only.  If anyone has any ideas making the extension smaller and more efficient, please don't hesitate to contribute.  

GitHub:  https://github.com/kevinkiklee/quicksearch                    

확장 프로그램 기본 정보

이름 QuickSearch QuickSearch
ID ffkkikfngfopgdacpankegfcjkcnkjle
공식 URL https://chromewebstore.google.com/detail/quicksearch/ffkkikfngfopgdacpankegfcjkcnkjle
설명 Highlight any text on the page, and `Cmd/Ctrl`+`Click` to search the selected text in a new tab.
파일 크기 11.05 KB
설치 횟수 24
현재 버전 0.0.2
최근 업데이트 2017-11-25
출시 날짜 2017-11-25
평점 5.00/5 총 3 개의 평점
개발자 kevin.kik.lee
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickSearch",
    "short_name": "QuickSearch",
    "version": "0.0.2",
    "description": "Highlight any text on the page, and `Cmd\/Ctrl`+`Click` to search the selected text in a new tab.",
    "icons": {
        "16": "icons\/icon16.png",
        "64": "icons\/icon64.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon64.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}