Omnicomplete

Smart search for your bookmarks & openned tabs

Omnicomplete란 무엇입니까?

Omnicomplete은(는) chrisseroka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smart search for your bookmarks & openned tabs"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This extension allows you to do smart search for your bookmarks & openned tabs. It also shows the list of recent tabs so that you can go to previous tab easily. 
Excellent if you want to switch tabs or go to favourite pages faster without mouse.

CAUTION: For best effect you have to set up keyboard shortcut manually by going to "Chrome > More tools > extensions > Keyboard shortcuts". I suggest using "Ctrl+Comma" but feel free to select shortcut of your choice.

Features:
 - Show recent tabs (ordered by last activation date) 
 - Search by part of bookmark name and location in folders
 - You do not have to learn any search expressions - just join part of words from bookmark folder and/or name and it will try to find it (matches are highlighted)
 - If bookmark is already openned it can activate it without openning new tab
 - Simiilar to smart search mechanism known from programming IDEs like Visual Studio with R#, Sublime Text or IntelliJ IDEA

IT IS OPEN-SOURCE! GitHub repository: https://github.com/chrisseroka/chrome-omnicomplete                    

확장 프로그램 기본 정보

이름 Omnicomplete Omnicomplete
ID mlcmdiaafmjoemkbhidcchjkckameebe
공식 URL https://chromewebstore.google.com/detail/omnicomplete/mlcmdiaafmjoemkbhidcchjkckameebe
설명 Smart search for your bookmarks & openned tabs
파일 크기 17.76 KB
설치 횟수 21
현재 버전 0.0.6
최근 업데이트 2018-09-12
출시 날짜 2018-09-12
평점 5.00/5 총 5 개의 평점
개발자 chrisseroka
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/chrisseroka/chrome-omnicomplete
도움말 페이지 URL https://github.com/chrisseroka/chrome-omnicomplete/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Omnicomplete",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Smart search for your bookmarks & openned tabs",
    "icons": {
        "24": "images\/icon-24.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/icon-24.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "bookmarks",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Comma",
                "mac": "Command+Comma",
                "chromeos": "Ctrl+Comma",
                "linux": "Ctrl+Comma"
            }
        }
    }
}