Sort by random: shuffle lists

Randomize the order of items in a given list

Vad är Sort by random: shuffle lists?

Sort by random: shuffle lists är en Chrome-tillägg utvecklad av Luke M, och dess huvudfunktion är "Randomize the order of items in a given list".

Tilläggsskärmbilder

screenshot

Ladda ner Sort by random: shuffle lists-förlängningens CRX-fil

Ladda ner Sort by random: shuffle lists-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Sort by random: shuffle lists Sort by random: shuffle lists
ID bkmcphdnmpfdcopiefafdbgknighhhin
Officiell webbadress https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin
Beskrivning Randomize the order of items in a given list
Filstorlek 18.47 KB
Antal Installationer 16
Aktuell Version 1.4
Senast Uppdaterad 2021-08-29
Publiceringsdatum 2021-08-15
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Luke M
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/qpwo/chrome-sort-by-random
Hjälpsida URL https://github.com/qpwo/chrome-sort-by-random/issues
Stödda Språk 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"
        }
    }
}