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
官方網址 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:\/\/*\/*"
    ]
}