Virtual Hosts
Access virtual hosts of a server without the need of host redirection or DNS.
Virtual Hosts là gì?
Virtual Hosts là một tiện ích mở rộng Chrome được phát triển bởi https://codefreak.net, và tính năng chính của nó là "Access virtual hosts of a server without the need of host redirection or DNS.".
Ả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 Virtual Hosts
Tải xuống các tệp mở rộng Virtual Hosts 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
== ABOUT == Overwrite the Host HTTP header to request a specific virtual host from a remote server. Often enough while waiting for DNS propagation or standing up a replacement site, developers edit the hosts file on their system to achieve the same effect. This extension basically does the same thing without the hassle. When detecting outgoing HTTP requests from your Chrome browser to the VHost Domain we redirect to the VHost IP. When detecting outgoing HTTP requests from your Chrome browser to the VHost IP, the extension simply adds a Host header containing the domain name specified in the VHost Domain. Any requests to sites other than the VHost Domain and VHost IP are ignored, so browsing other sites won't be impacted. == HOW TO USE == - Enable - Click the VHost icon in the top right and enter the desired domain name. When a domain is present and [x] Enabled is checked, the VHost icon turns red. That means all websites will be requested with the entered domain. - Disable - Untick the [ ] Enabled checkbox. The icon will turn green-ish which means VHost is disabled and all websites will be requested with the regular host name. == Source == I released the source code on GitHub: https://github.com/Gachl/Virtual-Hosts-Chrome-Extension I was unable to improve this extension with more features and I saw it being used by quite a lot of people. So thank you for that! If you need any features you can find the code or a fork of someone who already implemented more stuff over on GitHub. == THANK YOU == For using this extension. If you have the time to spare, please consider rating it in the Web Store. Many thanks to mcarver (https://github.com/mcarver) for: - Cleaning my very basic JS - Adding request filtering - Adding redirect - Adding Chrome storage sync - Making this thing better in many ways For the next version I hope to merge Zacqarys changes (https://github.com/Zacqary/Virtual-Hosts-Chrome-Extension) to this version.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Virtual Hosts |
ID | aiehidpclglccialeifedhajckcpedom |
URL Chính Thức | https://chromewebstore.google.com/detail/virtual-hosts/aiehidpclglccialeifedhajckcpedom |
Mô tả | Access virtual hosts of a server without the need of host redirection or DNS. |
Kích Thước Tệp | 9.7 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2015-10-29 |
Ngày Phát Hành | 2015-10-29 |
Đánh Giá | 3.34/5 Tổng số 101 Đánh Giá |
Nhà Phát Triển | https://codefreak.net |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Gachl/Virtual-Hosts-Chrome-Extension |
URL Trang Trợ Giúp | https://github.com/Gachl/Virtual-Hosts-Chrome-Extension/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "background": { "persistent": true, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "disabled.png", "default_popup": "popup.html" }, "description": "Access virtual hosts of a server without the need of host redirection or DNS.", "manifest_version": 2, "name": "Virtual Hosts", "permissions": [ "webRequest", "webRequestBlocking", " |