Keyboard Shortcuts for Gmail
Additional useful keyboard shortcuts for Gmail
Keyboard Shortcuts for Gmail क्या है?
Keyboard Shortcuts for Gmail justusegmail द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Additional useful keyboard shortcuts for Gmail"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Keyboard Shortcuts for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension adds additional, useful shortcuts to Gmail: Inbox view * Use up and down arrows to move the blue cursor when in inbox view * Use e or # to archive or delete any message in the inbox view, without having to select it first * Use h to snooze the current message in the inbox view * Use shift + up arrow or shift + down arrow to select multiple messages in inbox view * Use ESC to deselect messages in inbox view * Use ENTER to select the current message (wherever the blue cursor appears) in inbox view * Use ESC to go back to inbox view, when viewing a message * Use / to make the searchbar active so you can start typing a search This extension does NOT read any message data or operate on any other websites. It only triggers buttons on the Gmail page.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | njodmhlcodbejbbhjeegcpgnmklllgld |
आधिकारिक URL | https://chrome.google.com/webstore/detail/keyboard-shortcuts-for-gm/njodmhlcodbejbbhjeegcpgnmklllgld |
विवरण | Additional useful keyboard shortcuts for Gmail |
फ़ाइल का आकार | 45 KB |
स्थापना संख्या | 43 |
वर्तमान संस्करण | 1.11 |
अंतिम अपडेट | 2020-06-30 |
प्रकाशन तिथि | 2020-06-30 |
रेटिंग | 2.00/5 कुल 1 रेटिंग्स |
डेवलपर | justusegmail |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Keyboard Shortcuts for Gmail", "description": "Additional useful keyboard shortcuts for Gmail", "version": "1.11", "browser_action": { "default_icon": "icon-16.png" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "jquery.js", "content.js" ] } ], "web_accessible_resources": [ "*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "*:\/\/mail.google.com\/*" ] } |