Sort by random: shuffle lists

Randomize the order of items in a given list

What is Sort by random: shuffle lists?

Sort by random: shuffle lists is a Chrome extension developed by Luke M, and its main feature is "Randomize the order of items in a given list".

Extension Screenshots

screenshot

Download Sort by random: shuffle lists Extension CRX File

Download Sort by random: shuffle lists extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Sort by random: shuffle lists Sort by random: shuffle lists
ID bkmcphdnmpfdcopiefafdbgknighhhin
Official URL https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin
Description Randomize the order of items in a given list
File Size 18.47 KB
Installation Count 16
Current Version 1.4
Last Updated 2021-08-29
Publish Date 2021-08-15
Rating 5.00/5 Total 1 Ratings
Developer Luke M
Email [email protected]
Payment Type free
Extension Website https://github.com/qpwo/chrome-sort-by-random
Help Page URL https://github.com/qpwo/chrome-sort-by-random/issues
Supported Languages 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"
        }
    }
}