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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Sort by random: shuffle lists
قم بتنزيل ملفات الامتداد Sort by random: shuffle lists بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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" } } } |