Deeply Find

Search and highlight multiple words on web pages

什么是Deeply Find?

Deeply Find是由Royal Recruiter开发的Chrome扩展程序,该扩展的主要功能是“Search and highlight multiple words on web pages”。

扩展截图

screenshot
screenshot

下载Deeply Find扩展crx文件

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

扩展使用说明

                        Search and highlight multiple words on web pages. this may a
Can do for you:
 - Highlight multiple english words on all pages. (whole word matching for english words, currently)
 - Your words will be saved.

* Needs to refresh opened pages after install this extension.


If you love it, you can support it on Patreon (https://www.patreon.com/alexius_lee) or donate via PayPal (https://www.paypal.me/alexiuslee)                    

扩展基本信息

名称 Deeply Find Deeply Find
ID ojcdbgapfniccfnfcbfbdcfdpgmiaknp
官方URL https://chromewebstore.google.com/detail/deeply-find/ojcdbgapfniccfnfcbfbdcfdpgmiaknp
简介 Search and highlight multiple words on web pages
文件大小 1.37 MB
安装次数 60
当前版本 1.0.1
更新时间 2020-11-11
上架时间 2020-11-09
评分 5.00/5 共2次评分
开发者 Royal Recruiter
电子邮箱 [email protected]
付费类型 free
扩展官网 https://royalrecruiter.com/
帮助页面URL https://royalrecruiter.com/contact/
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Deeply Find",
    "version": "1.0.1",
    "description": "Search and highlight multiple words on web pages",
    "browser_action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png",
        "350": "img\/icon350.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery\/jquery.js",
                "jquery\/jquery.highlight.js",
                "popup.js"
            ],
            "css": [
                "highlight.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib.js",
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            },
            "description": "Activate the extension"
        }
    },
    "options_page": "options\/options.html",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "contextMenus"
    ]
}