Images proxy

Change images path

Wat is Images proxy?

Images proxy is een Chrome-extensie ontwikkeld door balabasiknet, en de belangrijkste functie is "Change images path".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Images proxy

Download Images proxy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
Officiële URL https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Beschrijving Change images path
Bestandsgrootte 75.47 KB
Aantal Installaties 65
Huidige Versie 1.0
Laatst Bijgewerkt 2017-03-24
Publicatiedatum 2017-03-24
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar balabasiknet
Betalingswijze free
Ondersteunde Talen 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"
    ]
}