LiveHosts
Switch your host/IP mappings in real time without editing your hosts file
Vad är LiveHosts?
LiveHosts är en Chrome-tillägg utvecklad av Aioros, och dess huvudfunktion är "Switch your host/IP mappings in real time without editing your hosts file".
Tilläggsskärmbilder
Ladda ner LiveHosts-förlängningens CRX-fil
Ladda ner LiveHosts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
LiveHosts is a Chrome extension that aims at providing a working (even if sub-obtimal) solution to a common nuisance that many web developers have to deal with every day. If you have multiple versions of your websites sharing the same host names on multiple environments, you often need to switch the assignments in your OS hosts file. Other extensions (like the life-saving HostAdmin) can help with the cumbersomeness, but changes to the hosts file usually take an inconvenient amount of time to actually affect the browser. Unfortunately, there is no way to make Chrome direct requests for a hostname to a specific IP without a standard redirect - you could set up a smart HTTP proxy, but it's often not possible or not convenient. This extension settles for a sub-obtimal approach: requests to the indicated hostnames are redirected to the chosen IPs with an additional Host header. The browser's address bar reflects this behaviour showing the hostname right after the IP (e.g. http://127.0.0.1/www.example.com/). The extension also tries to take care of all requests to either the IP or the hostname in a consistent way. Issues After the redirect, the user is effectively in a different domain that the one they expected. They may notice some functional differences: - depending on the server, parts of a web page referring to the site URL (like href and src attributes) could be different from the original - window.location has a different value that can potentially throw off JavaScript snippets - most Cross-Origin request won't work
Grundläggande Information om Tillägg
Namn | LiveHosts |
ID | hdpoplemgeaioijkmoebnnjcilfjnjdi |
Officiell webbadress | https://chromewebstore.google.com/detail/livehosts/hdpoplemgeaioijkmoebnnjcilfjnjdi |
Beskrivning | Switch your host/IP mappings in real time without editing your hosts file |
Filstorlek | 57.78 KB |
Antal Installationer | 12,013 |
Aktuell Version | 2.0.0 |
Senast Uppdaterad | 2022-03-29 |
Publiceringsdatum | 2019-08-05 |
Betyg | 3.43/5 Totalt 35 Betyg |
Utvecklare | Aioros |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/Aioros/livehosts |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LiveHosts", "version": "2.0.0", "icons": { "16": "icons\/livehosts-16.png", "48": "icons\/livehosts-48.png", "128": "icons\/livehosts-128.png" }, "description": "Switch your host\/IP mappings in real time without editing your hosts file", "background": { "service_worker": "background.js", "type": "module" }, "options_page": "options.html", "action": { "default_icon": { "19": "icons\/livehosts-19.png", "38": "icons\/livehosts-38.png" }, "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ { "resources": [ "\/popup\/*" ], "matches": [ "*:\/\/*\/*" ] } ], "incognito": "split", "permissions": [ "declarativeNetRequestWithHostAccess", "scripting", "storage" ], "host_permissions": [ "*:\/\/*\/*" ] } |