Search Bar

A slightly better option than the Google Chrome’s default Find Bar.

Search Bar란 무엇입니까?

Search Bar은(는) Timovski Stefan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A slightly better option than the Google Chrome’s default Find Bar."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Search Bar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Pretty much the same as the Google Chrome’s default Find Bar with a few compromises (due to platform limitations) but with a single improvement…

IT SEARCHES THE SELECTED TEXT ON THE PAGE WHEN YOU OPEN IT!!!

That’s all more or less.

Shortcut: Alt + S                    

확장 프로그램 기본 정보

이름 Search Bar Search Bar
ID lidhpbnnljgkbcdmojdjfjdbcijheogb
공식 URL https://chromewebstore.google.com/detail/search-bar/lidhpbnnljgkbcdmojdjfjdbcijheogb
설명 A slightly better option than the Google Chrome’s default Find Bar.
파일 크기 19.1 KB
설치 횟수 196
현재 버전 0.5
최근 업데이트 2018-08-28
출시 날짜 2018-08-28
평점 3.00/5 총 2 개의 평점
개발자 Timovski Stefan
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Timovski/GoogleChromeSearchBar
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Bar",
    "short_name": "Search Bar",
    "description": "A slightly better option than the Google Chrome\u2019s default Find Bar.",
    "version": "0.5",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "Popup\/popup.html",
        "default_icon": {
            "16": "Images\/icon16.png",
            "32": "Images\/icon32.png",
            "48": "Images\/icon48.png",
            "128": "Images\/icon128.png"
        }
    },
    "icons": {
        "16": "Images\/icon16.png",
        "32": "Images\/icon32.png",
        "48": "Images\/icon48.png",
        "128": "Images\/icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+S",
                "windows": "Alt+S",
                "mac": "Alt+S"
            },
            "description": "Opens popup.html"
        }
    }
}