Find Many Strings

Search and highlight multiple strings in webpages

Τι είναι το Find Many Strings;

Το Find Many Strings είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://psankar.blogspot.com, και η κύρια λειτουργία του είναι "Search and highlight multiple strings in webpages".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

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

Λήψη αρχείων επέκτασης Find Many Strings σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        "Find Many Strings" lets you search and highlight multiple words in a webpage. The difference between the browser's in-built Find feature and FMS is that, for every word you search, the word is highlighted in a different color and the highlights of the old searches don't disappear. 

WARNING: You need to reload all the tabs, if you want the extension to work on the tabs that were open prior to the installation of the extension.

The extension is open sourced and you can feel safe about installing it with the permissions it asks for. The permissions are needed to draw the highlighting bar in your pages. 

*None of the accessed data is stored anywhere*. You can check the sources yourself, if interested at: https://github.com/curiosity/Find-Many-Strings

New feature by Varunkumar Nagarajan: Select a text and call FMS, the selected word will be autofilled in the search box, and various other bug fixes.

Feel free to email me for any questions, feedback, comments etc. on [email protected]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Find Many Strings Find Many Strings
ID phabnclfbnmhmoipebjdfhkiacojlcnc
Επίσημο URL https://chrome.google.com/webstore/detail/find-many-strings/phabnclfbnmhmoipebjdfhkiacojlcnc
Περιγραφή Search and highlight multiple strings in webpages
Μέγεθος Αρχείου 53.94 KB
Αριθμός Εγκαταστάσεων 1,555
Τρέχουσα Έκδοση 1.6
Τελευταία Ενημέρωση 2022-07-18
Ημερομηνία Δημοσίευσης 2013-09-25
Αξιολόγηση 3.04/5 Συνολικά 46 Αξιολογήσεις
Προγραμματιστής http://psankar.blogspot.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://psankar.blogspot.com/2011/08/introducing-find-many-strings-chrome.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Find Many Strings",
    "version": "1.6",
    "description": "Search and highlight multiple strings in webpages",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "jquery.highlight-3.js",
                "selection.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}