Edit Url by Regex

Edit Url by Regex

Edit Url by Regex क्या है?

Edit Url by Regex ajsun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Edit Url by Regex"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Edit Url by Regex एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}