Chrome Palette

Chrome Palette, a command palette for chrome

ما هو Chrome Palette؟

Chrome Palette هو إضافة Chrome تم تطويرها بواسطة david.buezas، والميزة الرئيسية لها هي "Chrome Palette, a command palette for chrome".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Chrome Palette

قم بتنزيل ملفات الامتداد Chrome Palette بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Open source tool to access all internal chrome commands without using the mouse or remembering hotkeys.

Start by setting up the shortcut:
1. Click on the extension icon
2. Clicking the blue text on the top right of the extension popup (right left to the word shortcut)
3. The chrome hotkeys page will open, the pencil to edit the shortcut
4. Then set your key combination by pressing it (recommended: cmd+shift+p)

Source Code:
https://github.com/dbuezas/chrome-palette/

Supported Commands:
* Search Bookmarked Tabs
* Clear Cache and Reload Tab
* Close Current Tab
* Close Other Tabs
* Close Tabs To Left
* Close Tabs To Right
* Deattach Tab (Move to New Window)
* Reattach Tab (Move Tab to Previous Window)
* Duplicate Tab
* Find Sound/Audio tabs
* Move Tab Left
* Move Tab Right
* Move Tab To End
* Move Tab To Start
* Mute/Unmute Tab
* New Incognito Window
* New Tab
* New Window
* Reload All Tabs
* Reload Tab
* Reopen/Unclose Tab
* Reset command history
* Search History
* Search Tabs
* Search Google
* Search Google Drive
* Search Wikipedia
* Search Youtube
* Open Bookmarks Manager
* Open Downloads
* Open Extensions Page
* Open History Page
* Toggle Pin
* Toggle Full screen mode
* Add this tab to Bookmarks
* ...

# Changelog
* v1.2.3 Improved search performance
* v1.2.2 Added shortcuts for sub-palettes (edit from the shortcuts editor. The popup needs to be open before using the secondary shortcut)
* v1.2.1 Reduced load time by 50% (ported to Preact)
* v1.2.0 Added "Bookmark this tab"
* v1.1.0 Added Bookmark, Audio Tabs and History search support                    

معلومات أساسية عن التمديد

الاسم Chrome Palette Chrome Palette
ID hjkpneggcnclhpkddehdhlkeljclcnbo
عنوان URL الرسمي https://chromewebstore.google.com/detail/chrome-palette/hjkpneggcnclhpkddehdhlkeljclcnbo
الوصف Chrome Palette, a command palette for chrome
حجم الملف 60.89 KB
عدد التثبيتات 123
النسخة الحالية 1.2.3
آخر تحديث 2022-03-13
تاريخ النشر 2021-09-21
تقييم 5.00/5 مجموع تقييمات 2
المطور david.buezas
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/dbuezas/chrome-palette
عنوان صفحة المساعدة https://github.com/dbuezas/chrome-palette/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome Palette",
    "version": "1.2.3",
    "manifest_version": 2,
    "description": "Chrome Palette, a command palette for chrome",
    "icons": {
        "512": "logo512.png"
    },
    "browser_action": {
        "default_icon": "logo512.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "tabs",
        "sessions",
        "bookmarks",
        "history",
        "chrome:\/\/favicon\/"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'; img-src chrome:\/\/favicon;",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+P",
                "mac": "Command+Shift+P",
                "chromeos": "Ctrl+Shift+P",
                "linux": "Ctrl+Shift+P"
            }
        },
        "gd": {
            "description": "Google Drive"
        },
        "y": {
            "description": "Youtube"
        },
        "g": {
            "description": "Google"
        },
        "w": {
            "description": "Wikipedia"
        },
        "t": {
            "description": "Search Tabs"
        },
        "h": {
            "description": "Search History"
        },
        "b": {
            "description": "Search Bookmarks"
        },
        "bt": {
            "description": "Bookmark this page"
        }
    },
    "web_accessible_resources": [
        "date.txt"
    ]
}