Regex Search

This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…

Regex Searchคืออะไร?

Regex Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gsingh93 และคุณลักษณะหลักของมันคือ "This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…"

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

screenshot
screenshot

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

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

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

                        This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the way web pages are written, it is very difficult to make this extension work on 100% of pages. If you have any problems, please report them on the Github issues page: https://github.com/gsingh93/regex-search/issues.


Please DO NOT try to test this extension on any URL beginning with chrome.google.com/webstore. It will NOT work. See this question for details: http://stackoverflow.com/questions/11613371/chrome-extension-content-script-on-https-chrome-google-com-webstore                    

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

ชื่อ Regex Search Regex Search
ID bcdabfmndggphffkchfdcekcokmbnkjl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/regex-search/bcdabfmndggphffkchfdcekcokmbnkjl
คำอธิบาย This is a chrome extension that allows you to search the text of a page using regular expressions. Please note that because of the…
ขนาดไฟล์ 53.24 KB
จำนวนการติดตั้ง 6,475
เวอร์ชันปัจจุบัน 1.8
อัปเดตครั้งล่าสุด 2019-03-04
วันที่เผยแพร่ 2019-03-03
คะแนน 3.06/5 รวมทั้งหมด 178 คะแนน
ผู้พัฒนา gsingh93
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/gsingh93/regex-search
URL หน้าช่วยเหลือ https://github.com/gsingh93/regex-search/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Regex Search",
    "version": "1.8",
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/jquery.min.js",
                "content\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "options_page": "options\/options.html",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Alt+Shift+N"
            },
            "description": "Go to the next search result"
        },
        "prev": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Go to the previous search result"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            }
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}