List Randomizer
Picks a random item from a list.
What is List Randomizer?
List Randomizer is a Chrome extension developed by Unknown, and its main feature is "Picks a random item from a list.".
Extension Screenshots
Download List Randomizer Extension CRX File
Download List Randomizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | List Randomizer |
ID | cdhliilgdklblnbcgpdemndkojdeehpl |
Official URL | https://chromewebstore.google.com/detail/list-randomizer/cdhliilgdklblnbcgpdemndkojdeehpl |
Description | Picks a random item from a list. |
File Size | 10.52 KB |
Installation Count | 120 |
Current Version | 1.4 |
Last Updated | 2018-10-15 |
Publish Date | 2018-10-15 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/Fidosodd/RandomSelection |
Supported Languages | 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" } } |