Hello.

Full text search across Chrome tabs.

什麼是Hello.?

Hello.是由Vikesh開發的Chrome擴展程式,該擴展的主要功能是“Full text search across Chrome tabs.”。

擴展截圖

screenshot
screenshot

下載Hello.擴展crx文件

下載Hello.擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Hello is a simple (and naive) full text search across Chrome tabs.

How to use:
-> Press Ctrl + Enter from any tab.
-> Search any word you remember seeing on any tab open in the current window.
-> Click on the result (or Ctrl + 0-9, or scroll to the result and press Enter).

NOTE: This extension consumes quite a bit of memory. At heavy load (many tabs), the extension may consume up to 200 MB (Though much lesser than the average consumption of many popular websites, which can go up to 300 MB).                    

擴展基本資訊

名稱 Hello. Hello.
ID flgocgfdkefalfmognfpnllliahhgegk
官方網址 https://chrome.google.com/webstore/detail/hello/flgocgfdkefalfmognfpnllliahhgegk
簡介 Full text search across Chrome tabs.
檔案大小 11.58 KB
安裝次數 10
目前版本 1.3
更新時間 2015-08-27
上架時間 2015-08-27
評分 5.00/5 共 1 次評分
開發者 Vikesh
付費類型 free
支援的語言 en
manifest.json
{
    "background": {
        "scripts": [
            "js\/porter.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": false,
            "css": [
                "css\/main.css"
            ],
            "js": [
                "js\/porter.js",
                "js\/content_script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "description": "Full text search across Chrome tabs.",
    "manifest_version": 2,
    "name": "Hello.",
    "permissions": [
        "tabs",
        ""
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.3",
    "web_accessible_resources": [
        "img\/*.png",
        "html\/*.html",
        "js\/searchBar.js"
    ]
}