Regex Search

use regex in serach web page

什么是Regex Search?

Regex Search是由HYC开发的Chrome扩展程序,该扩展的主要功能是“use regex in serach web page”。

扩展截图

screenshot

下载Regex Search扩展crx文件

下载Regex Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Use regex in web page.

hotkey:  
open search : ctrl+shift+f
next item : enter
previous item : ctrl + enter                    

扩展基本信息

名称 Regex Search Regex Search
ID ohfenejoomibdainpdidldhgmpoggnfg
官方URL https://chromewebstore.google.com/detail/regex-search/ohfenejoomibdainpdidldhgmpoggnfg
简介 use regex in serach web page
文件大小 49.41 KB
安装次数 27
当前版本 1.1
更新时间 2019-09-03
上架时间 2019-09-03
评分 5.00/5 共2次评分
开发者 HYC
电子邮箱 [email protected]
付费类型 free
支持的语言 zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Regex Search",
    "description": "use regex in serach web page",
    "version": "1.1",
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "declarativeContent",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Regex Search",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/background.css"
            ],
            "js": [
                "js\/jquery-1.9.0.min.js",
                "js\/jquery.mark.min.js",
                "js\/background.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "windows": "Ctrl+Shift+F",
                "mac": "Ctrl+Shift+F"
            }
        }
    },
    "manifest_version": 2
}