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."입니다.

확장 프로그램 스크린샷

screenshot

Host name rewriter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}