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"
        }
    }
}