Sort by random: shuffle lists

Randomize the order of items in a given list

Apa itu Sort by random: shuffle lists?

Sort by random: shuffle lists adalah ekstensi Chrome yang dikembangkan oleh Luke M, dan fitur utamanya adalah "Randomize the order of items in a given list".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Sort by random: shuffle lists

Unduh file ekstensi Sort by random: shuffle lists dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Sort by random: shuffle lists Sort by random: shuffle lists
ID bkmcphdnmpfdcopiefafdbgknighhhin
URL Resmi https://chromewebstore.google.com/detail/sort-by-random-shuffle-li/bkmcphdnmpfdcopiefafdbgknighhhin
Deskripsi Randomize the order of items in a given list
Ukuran File 18.47 KB
Jumlah Instalasi 16
Versi Saat Ini 1.4
Terakhir Diperbarui 2021-08-29
Tanggal Publikasi 2021-08-15
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Luke M
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/qpwo/chrome-sort-by-random
URL Halaman Bantuan https://github.com/qpwo/chrome-sort-by-random/issues
Bahasa yang Didukung 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"
        }
    }
}