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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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