Sort by random: shuffle lists

Sort by random: shuffle lists

Randomize the order of items in a given list

Merlin
Additional files are visible only to premium users

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"
    }
  }
}