Find Many Strings

Search and highlight multiple strings in webpages

Find Many Stringsとは何ですか?

Find Many Stringsはhttp://psankar.blogspot.comによって開発されたChromeの拡張機能で、その主な機能は「Search and highlight multiple strings in webpages」です。

拡張機能のスクリーンショット

screenshot
screenshot

Find Many Strings拡張機能のCRXファイルをダウンロード

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
Eメール [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:\/\/*\/*"
    ]
}