Images proxy

Change images path

Vad är Images proxy?

Images proxy är en Chrome-tillägg utvecklad av balabasiknet, och dess huvudfunktion är "Change images path".

Tilläggsskärmbilder

screenshot

Ladda ner Images proxy-förlängningens CRX-fil

Ladda ner Images proxy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
Officiell webbadress https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Beskrivning Change images path
Filstorlek 75.47 KB
Antal Installationer 65
Aktuell Version 1.0
Senast Uppdaterad 2017-03-24
Publiceringsdatum 2017-03-24
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare balabasiknet
Betalningssätt free
Stödda Språk 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"
    ]
}