Command Palette
A command palette to navigate in Google Chrome faster.
ما هو Command Palette؟
Command Palette هو إضافة Chrome تم تطويرها بواسطة Chin Leung، والميزة الرئيسية لها هي "A command palette to navigate in Google Chrome faster.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Command Palette
قم بتنزيل ملفات الامتداد Command Palette بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An extension that allows you to quickly switch between active tabs, open new tabs, execute commands and more. Open the command palette by pressing CTRL/COMMAND + SHIFT + K at anytime. The shortcut is editable in the Chrome's shortcuts settings (chrome://extensions/shortcuts).
معلومات أساسية عن التمديد
الاسم | Command Palette |
ID | lfmfhlofoaleegdogpmknfbibciflfek |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/command-palette/lfmfhlofoaleegdogpmknfbibciflfek |
الوصف | A command palette to navigate in Google Chrome faster. |
حجم الملف | 86.21 KB |
عدد التثبيتات | 194 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2022-08-09 |
تاريخ النشر | 2022-03-22 |
تقييم | 4.00/5 مجموع تقييمات 6 |
المطور | Chin Leung |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/chinleung/chrome-command-palette-issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Command Palette", "description": "A command palette to navigate in Google Chrome faster.", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "commands": { "toggle-palette": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Toggle the command palette." } }, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "activeTab", "scripting", "search", "tabs" ] } |