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

Λήψη αρχείου CRX της επέκτασης Find Lite

Λήψη αρχείων επέκτασης 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 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"
            ]
        }
    ]
}