Images proxy

Change images path

ما هو Images proxy؟

Images proxy هو إضافة Chrome تم تطويرها بواسطة balabasiknet، والميزة الرئيسية لها هي "Change images path".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Images proxy

قم بتنزيل ملفات الامتداد Images proxy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    ]
}