Images reloader

This extension allows you to reload images which failed to load just in one click

Images reloaderคืออะไร?

Images reloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pavel และคุณลักษณะหลักของมันคือ "This extension allows you to reload images which failed to load just in one click"

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

screenshot

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

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

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

                        There are many reasons why an image in a website might fail to load, some of them fail due to site's issues another due to your internet connection interruptions. No matter what the reason is - this extension will help you to easily reload the failed images.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Images reloader Images reloader
ID cfnnfecmcnfcjohnkmaojedpmnjpeoik
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/images-reloader/cfnnfecmcnfcjohnkmaojedpmnjpeoik
คำอธิบาย This extension allows you to reload images which failed to load just in one click
ขนาดไฟล์ 420 KB
จำนวนการติดตั้ง 1,055
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2022-06-07
วันที่เผยแพร่ 2015-06-15
คะแนน 4.90/5 รวมทั้งหมด 21 คะแนน
ผู้พัฒนา Pavel
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jazzfog/Reload-Images-Browser-Plugin
URL หน้าช่วยเหลือ https://github.com/jazzfog/Reload-Images-Browser-Plugin/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Images reloader",
    "description": "This extension allows you to reload images which failed to load just in one click",
    "version": "1.1",
    "browser_action": {
        "name": "Click to reload images",
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png",
            "128": "img\/icon_128.png",
            "256": "img\/icon_256.png",
            "512": "img\/icon_512.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "cs_script.js",
                "sc_notificator.js"
            ],
            "css": [
                "cs_styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "bg_script.js"
        ]
    },
    "web_accessible_resources": [
        "img\/*"
    ]
}