Images proxy

Change images path

Images proxy क्या है?

Images proxy balabasiknet द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change images path"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Images proxy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Images proxy Images proxy
ID ijliaoaljdgaejgefphjpgekglneaofh
आधिकारिक URL https://chrome.google.com/webstore/detail/images-proxy/ijliaoaljdgaejgefphjpgekglneaofh
विवरण Change images path
फ़ाइल का आकार 75.47 KB
स्थापना संख्या 65
वर्तमान संस्करण 1.0
अंतिम अपडेट 2017-03-24
प्रकाशन तिथि 2017-03-24
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर balabasiknet
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}