Regex Replace

A regex engine to handle basic regular expressions on all viewed pages.

ما هو Regex Replace؟

Regex Replace هو إضافة Chrome تم تطويرها بواسطة Jack Kingsman، والميزة الرئيسية لها هي "A regex engine to handle basic regular expressions on all viewed pages.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Regex Replace

قم بتنزيل ملفات الامتداد Regex Replace بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Whether you want to consolidate your cloud-to-butt and your xkcd inspired s/keyboard/leopard extensions, or just do a simple regex replace on all pages, this extension is for you.

With a quick engine that doesn't interrupt page display and an easy way to add new expressions, Regex Replace is what you need to do fast and easy regex replacements on every page you see.                    

معلومات أساسية عن التمديد

الاسم Regex Replace Regex Replace
ID eggkcpojddgjkakokkdhocbjebhgkonb
عنوان URL الرسمي https://chromewebstore.google.com/detail/regex-replace/eggkcpojddgjkakokkdhocbjebhgkonb
الوصف A regex engine to handle basic regular expressions on all viewed pages.
حجم الملف 165 KB
عدد التثبيتات 1,778
النسخة الحالية 0.0.5
آخر تحديث 2023-12-11
تاريخ النشر 2019-04-11
تقييم 4.27/5 مجموع تقييمات 22
المطور Jack Kingsman
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/jkingsman/regex-replace/issues
عنوان صفحة المساعدة https://github.com/jkingsman/regex-replace/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Regex Replace",
    "version": "0.0.5",
    "description": "A regex engine to handle basic regular expressions on all viewed pages.",
    "browser_action": {
        "default_title": "Regex Replace Options",
        "default_icon": {
            "19": "img\/gear19.png",
            "38": "img\/gear38.png"
        },
        "default_popup": "html\/main.html"
    },
    "author": "Jack Kingsman ",
    "icons": {
        "16": "img\/gear16.png",
        "48": "img\/gear48.png",
        "128": "img\/gear128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage"
    ]
}