Chrome Image Loader

Randomly load your uploaded images when Chrome loads

What is Chrome Image Loader?

Chrome Image Loader is a Chrome extension developed by LL Canada Corp., and its main feature is "Randomly load your uploaded images when Chrome loads".

Extension Screenshots

screenshot

Download Chrome Image Loader Extension CRX File

Download Chrome Image Loader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Chrome Image Loader or Uploader.

Upload any images, your photos, your dog photos, motivation images, landscape, etc. Anything!

When chrome browser loads, random images from your uploaded folder will appear, instead of the old boring chrome home page.

Simple, Easy, and Useful!                    

Extension Basic Information

Name Chrome Image Loader Chrome Image Loader
ID cclgmigbfpomhhddnpjelgabagbpkaaf
Official URL https://chrome.google.com/webstore/detail/chrome-image-loader/cclgmigbfpomhhddnpjelgabagbpkaaf
Description Randomly load your uploaded images when Chrome loads
File Size 215 KB
Installation Count 79
Current Version 1.2
Last Updated 2020-02-06
Publish Date 2020-02-06
Rating 5.00/5 Total 3 Ratings
Developer LL Canada Corp.
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.2",
    "name": "Chrome Image Loader",
    "description": "Randomly load your uploaded images when Chrome loads",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/google.com\/*"
            ],
            "js": [
                "jquery-3.4.1.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "loader.html",
        "\/images\/*.png"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}