Google search tab fixer

Allows users to cycle through google search results by pressing the tab key.

什麼是Google search tab fixer?

Google search tab fixer是由Sam開發的Chrome擴展程式,該擴展的主要功能是“Allows users to cycle through google search results by pressing the tab key.”。

擴展截圖

screenshot

下載Google search tab fixer擴展crx文件

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

擴展使用說明

                        This small extension brings familiar tab functionality back to the google search results page. Press tab once to go to the top result, or multiple times to cycle through the search results. Press enter on any result to view that result.                    

擴展基本資訊

名稱 Google search tab fixer Google search tab fixer
ID hggbelpbiemgfkdhofjeajpgnoieogmg
官方網址 https://chromewebstore.google.com/detail/google-search-tab-fixer/hggbelpbiemgfkdhofjeajpgnoieogmg
簡介 Allows users to cycle through google search results by pressing the tab key.
檔案大小 20.04 KB
安裝次數 17
目前版本 0.0.4
更新時間 2016-07-15
上架時間 2016-07-15
評分 5.00/5 共 3 次評分
開發者 Sam
付費類型 free
擴展官網 http://www.101drum.com
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google search tab fixer",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Allows users to cycle through google search results by pressing the tab key.",
    "homepage_url": "http:\/\/101drum.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "*:\/\/*\/search*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/search*"
            ],
            "run_at": "document_start",
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}