List Randomizer

Picks a random item from a list.

Wat is List Randomizer?

List Randomizer is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Picks a random item from a list.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie List Randomizer

Download List Randomizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam List Randomizer List Randomizer
ID cdhliilgdklblnbcgpdemndkojdeehpl
Officiële URL https://chromewebstore.google.com/detail/list-randomizer/cdhliilgdklblnbcgpdemndkojdeehpl
Beschrijving Picks a random item from a list.
Bestandsgrootte 10.52 KB
Aantal Installaties 120
Huidige Versie 1.4
Laatst Bijgewerkt 2018-10-15
Publicatiedatum 2018-10-15
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Extensiewebsite https://github.com/Fidosodd/RandomSelection
Ondersteunde Talen 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"
    }
}