RegExp Finder

RegExp Finder enables you to search words by JavaScript regular expression on web pages.

RegExp Finderคืออะไร?

RegExp Finder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย niba1122 และคุณลักษณะหลักของมันคือ "RegExp Finder enables you to search words by JavaScript regular expression on web pages."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RegExp Finder

ดาวน์โหลดไฟล์ส่วนขยาย RegExp Finder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Not only, you can search by regular expression, but also you can search words which is over HTML elements.
Moreover, this extension does not require all-url access permission.

# How to use

1. Press shortcut to open the window. (Windows: Ctrl+J, Mac: Command+J)
2. Input a regular expression string.
3. Press Enter key or click the loupe. If matched texts exist, the texts will be highlighted.
4. Press Enter or click the down arrow, and you can forward to the next text.
Also, press Shift+Enter or click the up arrow, and you can backward to the previous text.

* You can customize the shortcut in chrome://extensions/shortcuts.

# Contact me

If you have any problems, please let me know from contact form. The contact form is below:

https://docs.google.com/forms/d/e/1FAIpQLSfCQamPZNOcyYPfHGa2IhGFxFqjLibqmRQASsL8wKc1txgKeQ/viewform
(I'm sorry this form is written in Japanese, but you may send an English message.)

# Contribution

This extension is a open source project. The repository is below:
https://github.com/niba1122/chrome-regexp-finder
Any PRs welcome!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ RegExp Finder RegExp Finder
ID hcgbknhogabmcmldkfgnmmjchljjfinh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/regexp-finder/hcgbknhogabmcmldkfgnmmjchljjfinh
คำอธิบาย RegExp Finder enables you to search words by JavaScript regular expression on web pages.
ขนาดไฟล์ 55.86 KB
จำนวนการติดตั้ง 69
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2020-03-12
วันที่เผยแพร่ 2020-03-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา niba1122
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RegExp Finder",
    "version": "1.0.0",
    "description": "RegExp Finder enables you to search words by JavaScript regular expression on web pages.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "RegExp Finder",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+J"
            }
        }
    }
}