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.”。
擴展截圖
下載Find Lite擴展crx文件
下載Find Lite擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | pbmkkcjgnjdcgggmfmbjfakcmeaeappm |
官方網址 | 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" ] } ] } |