Sort by random: shuffle lists

Randomize the order of items in a given list

什麼是Sort by random: shuffle lists?

Sort by random: shuffle lists是由Luke M開發的Chrome擴展程式,該擴展的主要功能是“Randomize the order of items in a given list”。

擴展截圖

screenshot

下載Sort by random: shuffle lists擴展crx文件

下載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
官方網址 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"
        }
    }
}