Tab Search in Omnibox

Type 't' plus a search term into the Omnibox to open a matched tab.

What is Tab Search in Omnibox?

Tab Search in Omnibox is a Chrome extension developed by shinji.tanaka, and its main feature is "Type 't' plus a search term into the Omnibox to open a matched tab.".

Extension Screenshots

screenshot

Download Tab Search in Omnibox Extension CRX File

Download Tab Search in Omnibox extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        # Overview

Browser extension to search a tab in Omnibox.

Type 't' in the omnibox of Chrome and input a search text, then the extension suggests existing tabs matching with the search text.

# Changes

## 1.2
- Unhighlighting previous highlighted tab(s)

## 1.1
- Focusing the window if the selected tab is in a different window.                    

Extension Basic Information

Name Tab Search in Omnibox Tab Search in Omnibox
ID mjkcddblobfnkhlideknfkbfdmogdglb
Official URL https://chromewebstore.google.com/detail/tab-search-in-omnibox/mjkcddblobfnkhlideknfkbfdmogdglb
Description Type 't' plus a search term into the Omnibox to open a matched tab.
File Size 352 KB
Installation Count 32
Current Version 1.2
Last Updated 2020-07-26
Publish Date 2020-07-05
Developer shinji.tanaka
Email [email protected]
Payment Type free
Extension Website https://github.com/stanaka/chrome-search-tab-in-omnibox
Help Page URL https://github.com/stanaka/chrome-search-tab-in-omnibox/blob/master/README.md
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Search in Omnibox",
    "description": "Type 't' plus a search term into the Omnibox to open a matched tab.",
    "version": "1.2",
    "author": "Shinji Tanaka",
    "homepage_url": "https:\/\/github.com\/stanaka\/chrome-search-tab-in-omnibox",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "omnibox": {
        "keyword": "t"
    },
    "permissions": [
        "tabs"
    ],
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "search-tab-in-omnibox-16.png",
            "32": "search-tab-in-omnibox-32.png"
        }
    },
    "icons": {
        "16": "search-tab-in-omnibox-16.png",
        "32": "search-tab-in-omnibox-32.png",
        "48": "search-tab-in-omnibox-48.png",
        "128": "search-tab-in-omnibox-128.png"
    }
}