Find Many Strings

Search and highlight multiple strings in webpages

Was ist Find Many Strings?

Find Many Strings ist eine Chrome-Erweiterung, die von http://psankar.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Search and highlight multiple strings in webpages".

Erweiterungsscreenshots

screenshot
screenshot

Find Many Strings-Erweiterungs-CRX-Datei herunterladen

Laden Sie Find Many Strings-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Find Many Strings Find Many Strings
ID phabnclfbnmhmoipebjdfhkiacojlcnc
Offizielle URL https://chrome.google.com/webstore/detail/find-many-strings/phabnclfbnmhmoipebjdfhkiacojlcnc
Beschreibung Search and highlight multiple strings in webpages
Dateigröße 53.94 KB
Installationsanzahl 1,555
Aktuelle Version 1.6
Letztes Update 2022-07-18
Veröffentlichungsdatum 2013-09-25
Bewertung 3.04/5 Insgesamt 46 Bewertungen
Entwickler http://psankar.blogspot.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://psankar.blogspot.com/2011/08/introducing-find-many-strings-chrome.html
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}