Images proxy

Change images path

Images proxyคืออะไร?

Images proxy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย balabasiknet และคุณลักษณะหลักของมันคือ "Change images path"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Images proxy

ดาวน์โหลดไฟล์ส่วนขยาย Images proxy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}