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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}