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」です。
拡張機能のスクリーンショット
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!
拡張機能の基本情報
名前 | |
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. |
Eメール | [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 } } |