Regular Expression Search

Search using Regular Expression.

Regular Expression Searchคืออะไร?

Regular Expression Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย penguinshunya และคุณลักษณะหลักของมันคือ "Search using Regular Expression."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Regular Expression Search

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

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

                        - instant search
- case-sensitive/case-insensitive
- select search history using up/down key
- choice marker color                    

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

ชื่อ Regular Expression Search Regular Expression Search
ID mjhoonbmfplgchoobbcjggndgdbomdhl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/regular-expression-search/mjhoonbmfplgchoobbcjggndgdbomdhl
คำอธิบาย Search using Regular Expression.
ขนาดไฟล์ 2.12 MB
จำนวนการติดตั้ง 745
เวอร์ชันปัจจุบัน 2.5.4.10
อัปเดตครั้งล่าสุด 2019-09-26
วันที่เผยแพร่ 2019-09-26
คะแนน 4.44/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา penguinshunya
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://twitter.com/penguinshunya
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regular Expression Search",
    "short_name": "regex search",
    "version": "2.5.4.10",
    "description": "__MSG_description__",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "Command+Shift+F"
            }
        }
    },
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/page.bundle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "option.html",
        "open_in_tab": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*\/*"
    ],
    "default_locale": "en",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}