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」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } } |