Sort by random: shuffle lists
Randomize the order of items in a given list
O que é Sort by random: shuffle lists?
Sort by random: shuffle lists é uma extensão do Chrome desenvolvida por Luke M, e sua principal característica é "Randomize the order of items in a given list".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sort by random: shuffle lists
Baixe arquivos de extensão Sort by random: shuffle lists no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Sort by random: shuffle lists |
ID | bkmcphdnmpfdcopiefafdbgknighhhin |
URL Oficial | https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin |
Descrição | Randomize the order of items in a given list |
Tamanho do Arquivo | 18.47 KB |
Contagem de Instalações | 16 |
Versão Atual | 1.4 |
Última Atualização | 2021-08-29 |
Data de Publicação | 2021-08-15 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Luke M |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/qpwo/chrome-sort-by-random |
URL da Página de Ajuda | https://github.com/qpwo/chrome-sort-by-random/issues |
Idiomas Suportados | 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" } } } |