Sort by random: shuffle lists
Randomize the order of items in a given list
Co to jest Sort by random: shuffle lists?
Sort by random: shuffle lists to rozszerzenie Chrome opracowane przez Luke M, a jego główną funkcją jest „Randomize the order of items in a given list”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Sort by random: shuffle lists
Pobierz pliki rozszerzeń Sort by random: shuffle lists 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
Randomly shuffle the order of items in a given list. Works on reddit, amazon, google search, etc. Ctrl+Shift+0 or Cmd+Shift+0 to choose an element, up/down keys to select the right list, enter to shuffle. There is no tracking or metrics or server or libraries. The source-code is not minified, so you can inspect it.
Podstawowe informacje o rozszerzeniu
Nazwa | Sort by random: shuffle lists |
ID | bkmcphdnmpfdcopiefafdbgknighhhin |
Oficjalny URL | https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin |
Opis | Randomize the order of items in a given list |
Rozmiar pliku | 18.47 KB |
Liczba instalacji | 16 |
Aktualna Wersja | 1.4 |
Ostatnia Aktualizacja | 2021-08-29 |
Data Publikacji | 2021-08-15 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Luke M |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/qpwo/chrome-sort-by-random |
Adres URL Strony Pomocy | https://github.com/qpwo/chrome-sort-by-random/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sort by random: shuffle lists", "version": "1.4", "description": "Randomize the order of items in a given list", "manifest_version": 3, "background": { "service_worker": "background.js" }, "permissions": [ "activeTab", "scripting" ], "action": [], "icons": { "48": "icon48.png", "128": "icon128.png" }, "commands": { "_execute_action": { "suggested_key": "Ctrl+Shift+0", "description": "Choose element to randomize" } } } |