Sort by random: shuffle lists

Randomize the order of items in a given list

Co je Sort by random: shuffle lists?

Sort by random: shuffle lists je rozšíření Chrome vyvinuté Luke M, a jeho hlavní funkcí je „Randomize the order of items in a given list“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Sort by random: shuffle lists

Stáhněte si soubory rozšíření Sort by random: shuffle lists ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Sort by random: shuffle lists Sort by random: shuffle lists
ID bkmcphdnmpfdcopiefafdbgknighhhin
Oficiální URL https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin
Popis Randomize the order of items in a given list
Velikost souboru 18.47 KB
Počet instalací 16
Aktuální Verze 1.4
Poslední Aktualizace 2021-08-29
Datum Vydání 2021-08-15
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Luke M
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/qpwo/chrome-sort-by-random
URL Stránky Nápovědy https://github.com/qpwo/chrome-sort-by-random/issues
Podporované Jazyky 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"
        }
    }
}