URL Rewriter
Rewrite URLs using custom rules.
URL Rewriter là gì?
URL Rewriter là một tiện ích mở rộng Chrome được phát triển bởi John Ahlgren, và tính năng chính của nó là "Rewrite URLs using custom rules.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng URL Rewriter
Tải xuống các tệp mở rộng URL Rewriter 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
Rewrite omnibox strings into desired URLs. Configure the rewrite rules you'd like in the extention options. Rules are of the form: regex_with_capturing_groups --> some_url_with_%s1_and_%s2 Where %s1 and %s2 are the first and second capture groups, respectively. For example, the following rules may be useful: # Fallback: grab first URL and use it .*(https?://[^\s]+).* --> %s1 .*(www\.[^\s]+).* --> %s1 .*(www\d+\.[^\s]+).* --> %s1 (.*) --> https://www.google.com/search?q=%s1 The first identifies a url starting with http and will go to that url. The second identifies urls with www. The third identifies urls such as www2, www3, etc The fourth rule falls back on a google search for the entire string.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | URL Rewriter |
ID | khncccgpokiedblbaahpfchghohlahje |
URL Chính Thức | https://chromewebstore.google.com/detail/url-rewriter/khncccgpokiedblbaahpfchghohlahje |
Mô tả | Rewrite URLs using custom rules. |
Kích Thước Tệp | 11.3 KB |
Số Lần Cài Đặt | 79 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2022-12-30 |
Ngày Phát Hành | 2022-04-19 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | John Ahlgren |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "background": { "service_worker": "background.js" }, "description": "Rewrite URLs using custom rules.", "host_permissions": [ "*:\/\/*\/*" ], "icons": { "128": "icons8-Edit-128.png", "16": "icons8-Edit-16.png", "48": "icons8-Edit-48.png" }, "manifest_version": 3, "name": "URL Rewriter", "omnibox": { "keyword": "j" }, "options_page": "options.html", "permissions": [ "storage", "activeTab" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.1" } |