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
Eメール [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"
    ]
}