Reg Search

Allows to search the DOM elements of a web page with regular expressions.

Reg Searchคืออะไร?

Reg Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SFerrazLeite และคุณลักษณะหลักของมันคือ "Allows to search the DOM elements of a web page with regular expressions."

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

screenshot

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

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

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

                        Allows to search the DOM elements of a web page with regular expressions.                    

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

ชื่อ Reg Search Reg Search
ID ndnhmbfdiponmfjppfblcmbkcmjoibpf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/reg-search/ndnhmbfdiponmfjppfblcmbkcmjoibpf
คำอธิบาย Allows to search the DOM elements of a web page with regular expressions.
ขนาดไฟล์ 82.07 KB
จำนวนการติดตั้ง 63
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-03-11
วันที่เผยแพร่ 2016-03-11
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา SFerrazLeite
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/SFerrazLeite/reg-search
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "eventPage\/eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        },
        "next": {
            "description": "Go to the next search result",
            "suggested_key": {
                "default": "Alt+N"
            }
        },
        "prev": {
            "description": "Go to the previous search result",
            "suggested_key": {
                "default": "Alt+P"
            }
        },
        "copy": {
            "description": "Copy search results as JSON array to clip board",
            "suggested_key": {
                "default": "Alt+C"
            }
        }
    },
    "content_scripts": [
        {
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/jquery.min.js",
                "content\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png"
    },
    "manifest_version": 2,
    "name": "Reg Search",
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "clipboardWrite"
    ],
    "version": "1.0"
}