Slash to search

Jump to the search box on any website by pressing the forward slash key on your keyboard.

Slash to search란 무엇입니까?

Slash to search은(는) dara_tobi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Jump to the search box on any website by pressing the forward slash key on your keyboard."입니다.

확장 프로그램 스크린샷

Slash to search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension lets you jump to the search box on websites by pressing the forward slash '/' key.

It also lets you choose to jump to the search box automatically when a website loads; an option ideal for YouTube and Jumia.


By default, it's configured to automatically jump to search on some popular e-commerce sites (Aliexpress, Amazon, Jumia, Konga) and YouTube.


There are some sites on which this extension won't work by default: type A sites, where the search box is hidden until you click on a search icon. And type B sites where there's no search icon, but the extension doesn't jump to the search box as expected.

To set up this extension to work properly for type A sites, right click on the search icon that reveals the search box and select "add this search trigger" from the menu. After this, the extension will function properly on the site.

To set up for type B sites, right click on the search box and select "add this search box". After that, the extension will function properly.                    

확장 프로그램 기본 정보

이름 Slash to search Slash to search
ID bmpakgjcflhghiceamnblabiebpfokac
공식 URL https://chromewebstore.google.com/detail/slash-to-search/bmpakgjcflhghiceamnblabiebpfokac
설명 Jump to the search box on any website by pressing the forward slash key on your keyboard.
파일 크기 12.88 KB
설치 횟수 252
현재 버전 1.0.5
최근 업데이트 2023-05-29
출시 날짜 2019-02-04
평점 5.00/5 총 2 개의 평점
개발자 dara_tobi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/andela-doladosu/slash-to-search
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "action": {
        "default_icon": "images\/slash_to_search.png",
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/index.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Jump to the search box on any website by pressing the forward slash key on your keyboard.",
    "icons": {
        "48": "images\/slash_to_search.png"
    },
    "manifest_version": 3,
    "name": "Slash to search",
    "offline_enabled": true,
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "short_name": "Slash to search",
    "version": "1.0.5"
}