Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

ما هو Gmail 'Expand all' keyboard shortcut؟

Gmail 'Expand all' keyboard shortcut هو إضافة Chrome تم تطويرها بواسطة [email protected]، والميزة الرئيسية لها هي "Press Alt+A to expand or collapse a Gmail thread".

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

screenshot

تحميل ملف CRX للإضافة Gmail 'Expand all' keyboard shortcut

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

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

                        Press Alt+A to expand or collapse a Gmail conversation thread.

To change the keyboard shortcut click "Keyboard shortcuts" on the extensions page (chrome://extensions/).                    

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

الاسم Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
عنوان URL الرسمي https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
الوصف Press Alt+A to expand or collapse a Gmail thread
حجم الملف 8.66 KB
عدد التثبيتات 1,803
النسخة الحالية 1.1
آخر تحديث 2014-09-07
تاريخ النشر 2014-09-07
تقييم 4.27/5 مجموع تقييمات 11
المطور [email protected]
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail 'Expand all' keyboard shortcut",
    "description": "Press Alt+A to expand or collapse a Gmail thread",
    "version": "1.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-expand-all": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Send a 'toggle-expand-all' event to the extension"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}