Images proxy

Change images path

Co to jest Images proxy?

Images proxy to rozszerzenie Chrome opracowane przez balabasiknet, a jego główną funkcją jest „Change images path”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Images proxy

Pobierz pliki rozszerzeń Images proxy w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
Oficjalny URL https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Opis Change images path
Rozmiar pliku 75.47 KB
Liczba instalacji 65
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-03-24
Data Publikacji 2017-03-24
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper balabasiknet
Typ Płatności free
Obsługiwane Języki 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"
    ]
}