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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
}