Images proxy

Change images path

O que é Images proxy?

Images proxy é uma extensão do Chrome desenvolvida por balabasiknet, e sua principal característica é "Change images path".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Images proxy

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

                        Chrome Images Proxy

Browser Chrome extension which allows to proxy images
What is this for?

With this extension you will be able to replace the path to pictures in the 'img' tag. Thus 'src' attribute in 'img' tag will be contain path to image on third-party resource
Features

Proxy images with a third-party resource
Each page has its own configurate
Simple for usage
Easy for configuration                    

Informações Básicas da Extensão

Nome Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
URL Oficial https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Descrição Change images path
Tamanho do Arquivo 75.47 KB
Contagem de Instalações 65
Versão Atual 1.0
Última Atualização 2017-03-24
Data de Publicação 2017-03-24
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor balabasiknet
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Images proxy",
    "version": "1.0",
    "description": "Change images path",
    "devtools_page": "pages\/popup.html",
    "icons": {
        "128": "images\/icon.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "contentSettings",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "js\/utils.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/utils.js",
                "js\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Images proxy",
        "default_icon": "images\/icon.png",
        "default_popup": "pages\/popup.html"
    },
    "web_accessible_resources": [
        "js\/popup.js"
    ]
}