Host name rewriter

Rewrite URLs for using a different host when accessing a web page.

Host name rewriter là gì?

Host name rewriter là một tiện ích mở rộng Chrome được phát triển bởi Mattias Lundberg, và tính năng chính của nó là "Rewrite URLs for using a different host when accessing a web page.".

Ả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 Host name rewriter

Tải xuống các tệp mở rộng Host name 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

                        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                    

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

Tên Host name rewriter Host name rewriter
ID kgkjmljnaneinhnbbdhigejjffonhffb
URL Chính Thức https://chromewebstore.google.com/detail/host-name-rewriter/kgkjmljnaneinhnbbdhigejjffonhffb
Mô tả Rewrite URLs for using a different host when accessing a web page.
Kích Thước Tệp 28.02 KB
Số Lần Cài Đặt 1,358
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2017-10-14
Ngày Phát Hành 2017-10-14
Đánh Giá 3.21/5 Tổng số 14 Đánh Giá
Nhà Phát Triển Mattias Lundberg
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mattiaslundberg/HostNameRewriter
URL Trang Trợ Giúp https://github.com/mattiaslundberg/HostNameRewriter
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}