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:\/\/*\/*"
    ]
}