Find Many Strings

Search and highlight multiple strings in webpages

Find Many Strings là gì?

Find Many Strings là một tiện ích mở rộng Chrome được phát triển bởi http://psankar.blogspot.com, và tính năng chính của nó là "Search and highlight multiple strings in webpages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Find Many Strings

Tải xuống các tệp mở rộng Find Many Strings dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Find Many Strings Find Many Strings
ID phabnclfbnmhmoipebjdfhkiacojlcnc
URL Chính Thức https://chrome.google.com/webstore/detail/find-many-strings/phabnclfbnmhmoipebjdfhkiacojlcnc
Mô tả Search and highlight multiple strings in webpages
Kích Thước Tệp 53.94 KB
Số Lần Cài Đặt 1,555
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2022-07-18
Ngày Phát Hành 2013-09-25
Đánh Giá 3.04/5 Tổng số 46 Đánh Giá
Nhà Phát Triển http://psankar.blogspot.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://psankar.blogspot.com/2011/08/introducing-find-many-strings-chrome.html
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}