Sort by random: shuffle lists

Randomize the order of items in a given list

Что такое Sort by random: shuffle lists?

Sort by random: shuffle lists - это расширение Chrome, разработанное Luke M, и его основная функция - "Randomize the order of items in a given list".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Sort by random: shuffle lists

Скачайте файлы расширений Sort by random: shuffle lists в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Sort by random: shuffle lists Sort by random: shuffle lists
ID bkmcphdnmpfdcopiefafdbgknighhhin
Официальный URL https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin
Описание Randomize the order of items in a given list
Размер файла 18.47 KB
Количество установок 16
Текущая Версия 1.4
Последнее Обновление 2021-08-29
Дата публикации 2021-08-15
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Luke M
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/qpwo/chrome-sort-by-random
URL страницы помощи https://github.com/qpwo/chrome-sort-by-random/issues
Поддерживаемые языки 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"
        }
    }
}