Sort by random: shuffle lists
Randomize the order of items in a given list
Qu'est-ce que Sort by random: shuffle lists ?
Sort by random: shuffle lists est une extension Chrome développée par Luke M, et sa fonction principale est "Randomize the order of items in a given list".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sort by random: shuffle lists
Téléchargez les fichiers d'extension Sort by random: shuffle lists au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Sort by random: shuffle lists |
ID | bkmcphdnmpfdcopiefafdbgknighhhin |
URL Officiel | https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin |
Description | Randomize the order of items in a given list |
Taille du Fichier | 18.47 KB |
Nombre d'Installations | 16 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2021-08-29 |
Date de Publication | 2021-08-15 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Luke M |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/qpwo/chrome-sort-by-random |
URL de la Page d'Aide | https://github.com/qpwo/chrome-sort-by-random/issues |
Langues Prises en Charge | 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" } } } |