Images proxy

Change images path

Apa itu Images proxy?

Images proxy adalah ekstensi Chrome yang dikembangkan oleh balabasiknet, dan fitur utamanya adalah "Change images path".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Images proxy

Unduh file ekstensi Images proxy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
URL Resmi https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
Deskripsi Change images path
Ukuran File 75.47 KB
Jumlah Instalasi 65
Versi Saat Ini 1.0
Terakhir Diperbarui 2017-03-24
Tanggal Publikasi 2017-03-24
Penilaian 5.00/5 Total 1 Penilaian
Pengembang balabasiknet
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}