Images proxy

Change images path

Hvad er Images proxy?

Images proxy er en Chrome-udvidelse udviklet af balabasiknet, og dens hovedfunktion er "Change images path".

Udvidelsesskærmbilleder

screenshot

Download Images proxy-udvidelses-CRX-fil

Download Images proxy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
Officiel URL https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Beskrivelse Change images path
Filstørrelse 75.47 KB
Antal Installationer 65
Nuværende Version 1.0
Senest Opdateret 2017-03-24
Udgivelsesdato 2017-03-24
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler balabasiknet
Betalingsmetode free
Understøttede Sprog 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"
    ]
}