Search On Site

The extension allows you to search on a specific site.

Search On Site란 무엇입니까?

Search On Site은(는) Jungle에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The extension allows you to search on a specific site."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        2023.10.27
-----------------------------
update icon

2023.10.21
-----------------------------
add command Alt+K
add search by action click

2023.10.15
-----------------------------
add context menu search

2023.10.11
-----------------------------
switch to manifest v3
to search on the specific site:
1) got to navigation bar (Ctrl+L)
2) type "son" keyword and hit the TAB
3) start typing your query

2017.05.16
-----------------------------
Fix as_sitesearch

2016.07.06
-----------------------------
added linked cse

2016.06.09
-----------------------------
fixed z-index of searchbox                    

확장 프로그램 기본 정보

이름 Search On Site Search On Site
ID ialmbfdolfbfddhhbpcpfajahojgbglh
공식 URL https://chromewebstore.google.com/detail/search-on-site/ialmbfdolfbfddhhbpcpfajahojgbglh
설명 The extension allows you to search on a specific site.
파일 크기 40.65 KB
설치 횟수 110
현재 버전 0.4.1
최근 업데이트 2023-10-27
출시 날짜 2017-05-15
평점 2.33/5 총 3 개의 평점
개발자 Jungle
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.4.1",
    "name": "Search On Site",
    "description": "The extension allows you to search on a specific site.",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "index.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_title": "Click to Search On Site"
    },
    "permissions": [
        "tabs",
        "search",
        "contextMenus"
    ],
    "omnibox": {
        "keyword": "son"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+K"
            }
        }
    }
}