Find Lite

Find Lite is a simple extension that allows you to search for text on the current page.

Find Lite란 무엇입니까?

Find Lite은(는) 果冻에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Find Lite is a simple extension that allows you to search for text on the current page."입니다.

확장 프로그램 스크린샷

screenshot

Find Lite 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The built-in page search function in Chrome is not powerful enough and cannot even differentiate case sensitivity, making it inconvenient to use.

Find Lite is a convenient and easy-to-use Chrome extension that helps you quickly search for text content on webpages. Specifically, this plugin supports the following features:

- Case sensitive search
- Whole word matching
- Regular expression support
- Highlight matched results
- Global preview, where you can directly view all matched results on the right side of the page.

In Find Lite, there is no need for any additional settings. The process for all operations is the same: call out with shortcuts - search - exit.

All you need to do: Command/Ctrol + Shift + f to call out search box; and Esc to exit box.                    

확장 프로그램 기본 정보

이름 Find Lite Find Lite
ID pbmkkcjgnjdcgggmfmbjfakcmeaeappm
공식 URL https://chromewebstore.google.com/detail/find-lite/pbmkkcjgnjdcgggmfmbjfakcmeaeappm
설명 Find Lite is a simple extension that allows you to search for text on the current page.
파일 크기 454 KB
설치 횟수 38
현재 버전 1.0.2
최근 업데이트 2023-05-09
출시 날짜 2023-04-03
평점 3.00/5 총 2 개의 평점
개발자 果冻
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/zou8944/find-lite
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Find Lite",
    "description": "Find Lite is a simple extension that allows you to search for text on the current page.",
    "version": "1.0.2",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content\/content.css",
                "icons\/exit.png",
                "icons\/up-enable.png",
                "icons\/up-disable.png",
                "icons\/down-enable.png",
                "icons\/down-disable.png"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_title": "Find Lite"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "app.js",
                "content\/panel.js",
                "content\/page.js",
                "content\/finder.js",
                "content\/listener.js",
                "content\/storage.js",
                "content\/content.js"
            ]
        }
    ]
}