SearchBar

The most efficient way to use your favourite search engines. Search selected text, use customizable hotkeys and much more.

SearchBarคืออะไร?

SearchBar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jacob H และคุณลักษณะหลักของมันคือ "The most efficient way to use your favourite search engines. Search selected text, use customizable hotkeys and much more."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        To get started with SearchBar, wait for it to finish installing, go to a web page such as www.google.com and press F4. If nothing happens, you may need to refresh the page.
___________________________________________

SearchBar brings the best features of Google Toolbar to Chrome, and much more besides:
● one-click search customization
● search selected text
● new tab search
● customizable hotkeys
● search suggestions
● search history
● highlight search terms
● find search terms in page
● search current site
● pre-populate with search terms
● resize, reorder and reposition
● completely customizable
● all in one convenient toolbar
___________________________________________

Please click "Support" to submit bug reports, questions and feature suggestions.
Please do not leave bug reports in your review.

If you have found the extension valuable, then please consider sponsoring me here: http://www.againstmalaria.com/SearchBar
___________________________________________

HOW DO I USE THE ONE-CLICK SEARCH CUSTOMIZATION?
Right-click on any search engine's input field and select "Add to SearchBar...".

HOW DO I SEARCH SELECTED TEXT?
Selected text is automatically detected, eliminating the need for copy/pasting.

HOW DO I DO A NEW TAB SEARCH?
Hold the Ctrl key while pressing a button or hotkey.

HOW DO I GET THE HOTKEY FOR SHOWING SEARCHBAR TO WORK ON THE NEW TAB PAGE?
Set another hotkey by selecting "Keyboard shortcuts" from the menu of Chrome's Extensions page.

WHY DOES THE EXTENSION NEED TO "ACCESS MY DATA ON ALL WEBSITES"?
Chrome requires this permission to be asked for in order for the extension to be inserted onto every page. However, the extension does not change or use any of your data outside of its declared features. For more information, please see the privacy policy (link below "Additional Information").

WHAT INSPIRED YOU TO CREATE SUCH AN AMAZING EXTENSION?
This extension was borne out of personal frustration with Chrome's default search system and dissatisfaction with the features of similar extensions. I hope it improves your browsing experience as much as it has mine.

This extension incorporates images from the Tango! Desktop Project. The developer may be compensated by You.com for referrals from SearchBar.                    

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

ชื่อ SearchBar SearchBar
ID fjefgkhmchopegjeicnblodnidbammed
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/searchbar/fjefgkhmchopegjeicnblodnidbammed
คำอธิบาย The most efficient way to use your favourite search engines. Search selected text, use customizable hotkeys and much more.
ขนาดไฟล์ 218 KB
จำนวนการติดตั้ง 68,599
เวอร์ชันปัจจุบัน 0.11.10
อัปเดตครั้งล่าสุด 2023-10-15
วันที่เผยแพร่ 2019-10-26
คะแนน 4.54/5 รวมทั้งหมด 448 คะแนน
ผู้พัฒนา Jacob H
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://drive.google.com/file/d/1wHTGo-jmEg3i2IijtN90WZ45hw4_JoQI/view
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SearchBar",
    "version": "0.11.10",
    "manifest_version": 2,
    "description": "The most efficient way to use your favourite search engines. Search selected text, use customizable hotkeys and much more.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "start.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "incognito": "split",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "show\/hide SearchBar",
        "default_popup": "popup.html"
    }
}