Images proxy

Change images path

Cos'è Images proxy?

Images proxy è un'estensione di Chrome sviluppata da balabasiknet, e la sua funzione principale è "Change images path".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Images proxy

Scarica i file di estensione Images proxy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
URL Ufficiale https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Descrizione Change images path
Dimensione del File 75.47 KB
Conteggio Installazioni 65
Versione Corrente 1.0
Ultimo Aggiornamento 2017-03-24
Data di Pubblicazione 2017-03-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore balabasiknet
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}