List Randomizer
Picks a random item from a list.
Co to jest List Randomizer?
List Randomizer to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Picks a random item from a list.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia List Randomizer
Pobierz pliki rozszerzeń List Randomizer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | List Randomizer |
ID | cdhliilgdklblnbcgpdemndkojdeehpl |
Oficjalny URL | https://chromewebstore.google.com/detail/list-randomizer/cdhliilgdklblnbcgpdemndkojdeehpl |
Opis | Picks a random item from a list. |
Rozmiar pliku | 10.52 KB |
Liczba instalacji | 120 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2018-10-15 |
Data Publikacji | 2018-10-15 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Unknown |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Fidosodd/RandomSelection |
Obsługiwane Języki | 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" } } |