Edit Url by Regex

Edit Url by Regex

ما هو Edit Url by Regex؟

Edit Url by Regex هو إضافة Chrome تم تطويرها بواسطة ajsun، والميزة الرئيسية لها هي "Edit Url by Regex".

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

screenshot

تحميل ملف CRX للإضافة Edit Url by Regex

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

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

                        If you need to replace some specific parts of the current tab url matching a pattern with new value, then this extension is for you.
You can provide the data for the pattern and the new value, then hit submit. The URL will get changed automatically.                    

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

الاسم Edit Url by Regex Edit Url by Regex
ID ofhioacmkjbbalfidehfdecjfnllhdno
عنوان URL الرسمي https://chromewebstore.google.com/detail/edit-url-by-regex/ofhioacmkjbbalfidehfdecjfnllhdno
الوصف Edit Url by Regex
حجم الملف 52.6 KB
عدد التثبيتات 80
النسخة الحالية 1.3.0.0
آخر تحديث 2022-05-03
تاريخ النشر 2022-03-25
تقييم 5.00/5 مجموع تقييمات 6
المطور ajsun
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Edit Url by Regex",
    "commands": {
        "run-edit-url": {
            "suggested_key": {
                "default": "Alt+4"
            },
            "description": "Edit Url by Regex"
        },
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+3",
                "mac": "Alt+3",
                "chromeos": "Alt+3",
                "linux": "Alt+3"
            }
        }
    },
    "description": "Edit Url by Regex",
    "version": "1.3.0.0",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "action": {
        "default_icon": "\/icon.png",
        "icons": {
            "96": "\/icon.png"
        },
        "default_popup": "\/popup.html"
    },
    "icons": {
        "96": "\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "\/content.js"
            ]
        }
    ]
}