Images reloader

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

Images reloaderとは何ですか?

Images reloaderはPavelによって開発されたChromeの拡張機能で、その主な機能は「This extension allows you to reload images which failed to load just in one click」です。

拡張機能のスクリーンショット

screenshot

Images reloader拡張機能のCRXファイルをダウンロード

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
Eメール [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\/*"
    ]
}