Host name rewriter
Rewrite URLs for using a different host when accessing a web page.
什么是Host name rewriter?
Host name rewriter是由Mattias Lundberg开发的Chrome扩展程序,该扩展的主要功能是“Rewrite URLs for using a different host when accessing a web page.”。
扩展截图
下载Host name rewriter扩展crx文件
下载Host name rewriter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Extension for rewriting of host names when accessing a webpage. Will rewrite the host name regardless of method of access, both clicking a link and writing URL will work. Usage example: Attempts to reach 'example.com/something' will be redirected to 'mydomain.com/something'. A sub domain, 'sub.example.com', will not be rewritten if a rule for 'example.com' is present. A specific rule for 'sub.example.com' needs to be added. The extension needs to be configured from the extension button or options page before starting to work. Version History * 1.3.0 - Fix rewrite after redirect * 1.2.1 - Sync changes between options and action. * 1.2.0 - Improvements of interface and usability * 1.1.0 - Improve performance and interface * 1.0.1 - Fix installation * 1.0.0 - Initial release
扩展基本信息
名称 | Host name rewriter |
ID | kgkjmljnaneinhnbbdhigejjffonhffb |
官方URL | https://chromewebstore.google.com/detail/host-name-rewriter/kgkjmljnaneinhnbbdhigejjffonhffb |
简介 | Rewrite URLs for using a different host when accessing a web page. |
文件大小 | 28.02 KB |
安装次数 | 1,358 |
当前版本 | 1.3.0 |
更新时间 | 2017-10-14 |
上架时间 | 2017-10-14 |
评分 | 3.21/5 共14次评分 |
开发者 | Mattias Lundberg |
付费类型 | free |
扩展官网 | https://github.com/mattiaslundberg/HostNameRewriter |
帮助页面URL | https://github.com/mattiaslundberg/HostNameRewriter |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Host name rewriter", "manifest_version": 2, "version": "1.3.0", "description": "Rewrite URLs for using a different host when accessing a web page.", "options_page": "options.html", "permissions": [ "storage", "webNavigation", "tabs" ], "icons": { "16": "images\/icon16.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "event.js" ], "persistent": true }, "browser_action": { "default_icon": { "19": "images\/icon19.png" }, "default_title": "Host name rewriter" } } |