Images proxy

Change images path

Qu'est-ce que Images proxy ?

Images proxy est une extension Chrome développée par balabasiknet, et sa fonction principale est "Change images path".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Images proxy

Téléchargez les fichiers d'extension Images proxy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
URL Officiel https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Description Change images path
Taille du Fichier 75.47 KB
Nombre d'Installations 65
Version Actuelle 1.0
Dernière Mise à Jour 2017-03-24
Date de Publication 2017-03-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur balabasiknet
Type de Paiement free
Langues Prises en Charge 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"
    ]
}