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 nwjlyons@googlemail.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Press Alt+A to expand or collapse a Gmail thread"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail 'Expand all' keyboard shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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/).
एक्सटेंशन की मूल जानकारी
नाम | |
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 रेटिंग्स |
डेवलपर | nwjlyons@googlemail.com |
भुगतान के प्रकार | 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" } } |