Edit Url by Regex

Edit Url by Regex

Edit Url by Regex là gì?

Edit Url by Regex là một tiện ích mở rộng Chrome được phát triển bởi ajsun, và tính năng chính của nó là "Edit Url by Regex".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Edit Url by Regex

Tải xuống các tệp mở rộng Edit Url by Regex dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Edit Url by Regex Edit Url by Regex
ID ofhioacmkjbbalfidehfdecjfnllhdno
URL Chính Thức https://chromewebstore.google.com/detail/edit-url-by-regex/ofhioacmkjbbalfidehfdecjfnllhdno
Mô tả Edit Url by Regex
Kích Thước Tệp 52.6 KB
Số Lần Cài Đặt 80
Phiên Bản Hiện Tại 1.3.0.0
Cập Nhật Lần Cuối 2022-05-03
Ngày Phát Hành 2022-03-25
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển ajsun
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}