Chrome Image Loader
Randomly load your uploaded images when Chrome loads
Cos'è Chrome Image Loader?
Chrome Image Loader è un'estensione di Chrome sviluppata da LL Canada Corp., e la sua funzione principale è "Randomly load your uploaded images when Chrome loads".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chrome Image Loader
Scarica i file di estensione Chrome Image Loader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | |
ID | cclgmigbfpomhhddnpjelgabagbpkaaf |
URL Ufficiale | https://chrome.google.com/webstore/detail/chrome-image-loader/cclgmigbfpomhhddnpjelgabagbpkaaf |
Descrizione | Randomly load your uploaded images when Chrome loads |
Dimensione del File | 215 KB |
Conteggio Installazioni | 79 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2020-02-06 |
Data di Pubblicazione | 2020-02-06 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | LL Canada Corp. |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } } |