Chrome Image Loader

Randomly load your uploaded images when Chrome loads

什么是Chrome Image Loader?

Chrome Image Loader是由LL Canada Corp.开发的Chrome扩展程序,该扩展的主要功能是“Randomly load your uploaded images when Chrome loads”。

扩展截图

screenshot

下载Chrome Image Loader扩展crx文件

下载Chrome Image Loader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Chrome Image Loader Chrome Image Loader
ID cclgmigbfpomhhddnpjelgabagbpkaaf
官方URL https://chrome.google.com/webstore/detail/chrome-image-loader/cclgmigbfpomhhddnpjelgabagbpkaaf
简介 Randomly load your uploaded images when Chrome loads
文件大小 215 KB
安装次数 79
当前版本 1.2
更新时间 2020-02-06
上架时间 2020-02-06
评分 5.00/5 共3次评分
开发者 LL Canada Corp.
电子邮箱 [email protected]
付费类型 free
支持的语言 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
    }
}