Rewriter

Rewrite the content of a webpage using user-defined rules.

O que é Rewriter?

Rewriter é uma extensão do Chrome desenvolvida por Peshmelba, e sua principal característica é "Rewrite the content of a webpage using user-defined rules.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Rewriter

Baixe arquivos de extensão 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

                        Rewriter is a web extension that use user-defined rules to rewrite some contents on a webpage.

You can use it as a simple word replacer, as a custom adblocker, or as a curse filter.
Everything is permitted, you are the master of the rules you write.
Rewriter also accepts regular-expressions to perform a more powerful search in the page.

It as a builder to help you create your rules, just click the icon next to the address bar.

Rewriter links your rules with your Google account, so you just have to log on an other computer with your account to get all your rules back.


#####
This application is in development. Some changes will come often.
This application is opensource, go at https://github.com/Peshmelba/Rewriter-chrome to participate to this project.
Submit any issues, bug reports, or ideas at https://github.com/Peshmelba/Rewriter-chrome/issues.                    

Informações Básicas da Extensão

Nome Rewriter Rewriter
ID kgoaldgnannoebilojgnheicbkfbebjg
URL Oficial https://chromewebstore.google.com/detail/rewriter/kgoaldgnannoebilojgnheicbkfbebjg
Descrição Rewrite the content of a webpage using user-defined rules.
Tamanho do Arquivo 189 KB
Contagem de Instalações 1,378
Versão Atual 1.0.1
Última Atualização 2015-02-26
Data de Publicação 2015-02-25
Classificação 4.25/5 Total de 4 Avaliações
Desenvolvedor Peshmelba
Tipo de Pagamento free
Site da Extensão https://github.com/Peshmelba/Rewriter-chrome/
URL da Página de Ajuda https://github.com/Peshmelba/Rewriter-chrome/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rewriter",
    "description": "Rewrite the content of a webpage using user-defined rules.",
    "version": "1.0.1",
    "icons": {
        "24": "image\/icon24.png",
        "32": "image\/icon32.png",
        "48": "image\/icon48.png",
        "64": "image\/icon64.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "24": "image\/icon24.png",
            "32": "image\/icon32.png",
            "48": "image\/icon48.png",
            "64": "image\/icon64.png",
            "128": "image\/icon128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "include\/common.js",
                "class\/rule.js",
                "class\/datamanager.js",
                "content-script\/rewriter.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}