Images proxy

Change images path

What is Images proxy?

Images proxy is a Chrome extension developed by balabasiknet, and its main feature is "Change images path".

Extension Screenshots

screenshot

Download Images proxy Extension CRX File

Download Images proxy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
Official URL https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Description Change images path
File Size 75.47 KB
Installation Count 65
Current Version 1.0
Last Updated 2017-03-24
Publish Date 2017-03-24
Rating 5.00/5 Total 1 Ratings
Developer balabasiknet
Payment Type free
Supported Languages 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"
    ]
}