Search Quick

Google SearchQuick automatically opens the search results of a Google Search in new tabs

Search Quickคืออะไร?

Search Quick เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vignesh และคุณลักษณะหลักของมันคือ "Google SearchQuick automatically opens the search results of a Google Search in new tabs"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Search Quick

ดาวน์โหลดไฟล์ส่วนขยาย Search Quick ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Google SearchQuick is a browser add-on that opens the predetermined number of search results that are returned on a Google search in separate tabs at the click of a single button.  This extension works on all Google domains.

The number of results that need to be opened can be defined in the Options. By default three results are opened. This can be set to a maximum of 8.


Points to remember:
1)Please wait for the Google results page to be completely loaded before clicking on the extension icon.
2)Doesn’t work on secured Google connections (https:\\)


Please reach me on [email protected] with your feedback.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Search Quick Search Quick
ID chnnajbjipfainfepeoiblbpmajdnkpn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/search-quick/chnnajbjipfainfepeoiblbpmajdnkpn
คำอธิบาย Google SearchQuick automatically opens the search results of a Google Search in new tabs
ขนาดไฟล์ 123 KB
จำนวนการติดตั้ง 225
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2012-10-17
วันที่เผยแพร่ 2012-10-17
คะแนน 4.56/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Vignesh
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Quick",
    "version": "0.3",
    "description": "Google SearchQuick automatically opens the search results of a Google Search in new tabs",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "Google.png",
        "48": "Google.png",
        "128": "Google.png"
    },
    "browser_action": {
        "default_icon": "Google.png"
    },
    "manifest_version": 2,
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery-1.6.1.min.js",
                "urlcatch.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}