Regex search
Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form
什么是Regex search?
Regex search是由Zudwa开发的Chrome扩展程序,该扩展的主要功能是“Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form”。
扩展截图
下载Regex search扩展crx文件
下载Regex search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows to search on page using regular expression pattern.
Use CTRL+SHIFT+F shortcut to open search box. 扩展基本信息
| 名称 | |
| ID | bjfgihoefmkcaiipaddgpcljkjbaomfk |
| 官方URL | https://chromewebstore.google.com/detail/regex-search/bjfgihoefmkcaiipaddgpcljkjbaomfk |
| 简介 | Allows to search on page using regular expression pattern. Use CTRL+SHIFT+F hotkey to open search form |
| 文件大小 | 13.34 KB |
| 安装次数 | 236 |
| 当前版本 | 1.1 |
| 更新时间 | 2016-02-25 |
| 上架时间 | 2016-02-25 |
| 评分 | 3.40/5 共5次评分 |
| 开发者 | Zudwa |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Regex search",
"short_name": "Search on page using regular expression",
"version": "1.1",
"description": "Allows to search on page using regular expression pattern.\n\nUse CTRL+SHIFT+F hotkey to open search form",
"icons": {
"16": "img\/loupe-icon-16.png",
"48": "img\/loupe-icon-48.png",
"128": "img\/loupe-icon-128.png"
},
"browser_action": {
"default_icon": {
"19": "img\/loupe-icon-19.png",
"38": "img\/loupe-icon-38.png"
},
"default_popup": "search-box.html"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+F",
"mac": "Command+Shift+F",
"chromeos": "Ctrl+Shift+F",
"linux": "Ctrl+Shift+F"
}
}
}
} | |