List Randomizer
Picks a random item from a list.
Cos'è List Randomizer?
List Randomizer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Picks a random item from a list.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione List Randomizer
Scarica i file di estensione List Randomizer 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
This friendly extension makes decisions easy. The extension lets to write and recall lists from Chrome's local storage. You are able to select one of these lists and have the extension choose a randomized item off of the chosen list. The extension supports eight lists currently.
Informazioni di Base sull'Estensione
Nome | List Randomizer |
ID | cdhliilgdklblnbcgpdemndkojdeehpl |
URL Ufficiale | https://chromewebstore.google.com/detail/list-randomizer/cdhliilgdklblnbcgpdemndkojdeehpl |
Descrizione | Picks a random item from a list. |
Dimensione del File | 10.52 KB |
Conteggio Installazioni | 120 |
Versione Corrente | 1.4 |
Ultimo Aggiornamento | 2018-10-15 |
Data di Pubblicazione | 2018-10-15 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Fidosodd/RandomSelection |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "List Randomizer", "short_name": "Randomizer", "version": "1.4", "description": "Picks a random item from a list.", "background": { "scripts": [ "background.js" ], "persistent": true }, "manifest_version": 2, "browser_action": { "default_popup": "popup.html", "default_title": "List Randomizer" }, "permissions": [ "storage" ], "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } } |