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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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