Omnicomplete

Smart search for your bookmarks & openned tabs

Omnicomplete क्या है?

Omnicomplete chrisseroka द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Smart search for your bookmarks & openned tabs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Omnicomplete एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            }
        }
    }
}