Host name rewriter

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

O que é Host name rewriter?

Host name rewriter é uma extensão do Chrome desenvolvida por Mattias Lundberg, e sua principal característica é "Rewrite URLs for using a different host when accessing a web page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Host name rewriter

Baixe arquivos de extensão Host name rewriter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Host name rewriter Host name rewriter
ID kgkjmljnaneinhnbbdhigejjffonhffb
URL Oficial https://chromewebstore.google.com/detail/host-name-rewriter/kgkjmljnaneinhnbbdhigejjffonhffb
Descrição Rewrite URLs for using a different host when accessing a web page.
Tamanho do Arquivo 28.02 KB
Contagem de Instalações 1,358
Versão Atual 1.3.0
Última Atualização 2017-10-14
Data de Publicação 2017-10-14
Classificação 3.21/5 Total de 14 Avaliações
Desenvolvedor Mattias Lundberg
Tipo de Pagamento free
Site da Extensão https://github.com/mattiaslundberg/HostNameRewriter
URL da Página de Ajuda https://github.com/mattiaslundberg/HostNameRewriter
Idiomas Suportados 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"
    }
}