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文件
下载Slash to search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } |