Delete Key for Gmail™
Delete a single email in Gmail™ with a customizable user shortcut (default is Shift + 5).
Delete Key for Gmail™ क्या है?
Delete Key for Gmail™ https://apkmirror.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Delete a single email in Gmail™ with a customizable user shortcut (default is Shift + 5)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Delete Key for Gmail™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
-= Description =- Google's Gmail™ has allowed a keyboard shortcut to delete entire message threads (#) for a long time, but it has never made it possible to use a keyboard shortcut to delete individual emails in threads. Until now. Enter Delete Key for Gmail™. Press Shift + 5 (% symbol), and voila - only the current individual message is deleted. It performs the same action as clicking the menu button on a message and selecting "Delete this message." The best part is you can change this shortcut to anything you want from the extension's Options page. Gmail is a trademark of Google LLC. Use of this trademark is subject to Google Permissions. This extension and its developers are in no way associated with Google LLC. -= Changelog =- 1.5 - Shortcuts no longer conflict with Gmail's own keyboard shortcuts. - Updated to Manifest V3 - Settings panel now uses Bootstrap (mostly because Manifest V3 removed chrome_style) 1.4 - Fixed bugs related to the latest Gmail code changes. 1.3: - Fixed bug where keyboard shortcuts could be activated while typing in some fields. 1.2: - Added support for a secondary shortcut. 1.1: - Fixed bug where delete action would fire if the user was typing in a text field. 1.0: - Initial release.
एक्सटेंशन की मूल जानकारी
नाम | Delete Key for Gmail™ |
ID | alpohlaboohebmblbmanccbepncahbda |
आधिकारिक URL | https://chromewebstore.google.com/detail/delete-key-for-gmail/alpohlaboohebmblbmanccbepncahbda |
विवरण | Delete a single email in Gmail™ with a customizable user shortcut (default is Shift + 5). |
फ़ाइल का आकार | 45.08 KB |
स्थापना संख्या | 2,457 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2022-10-18 |
प्रकाशन तिथि | 2020-02-11 |
रेटिंग | 3.54/5 कुल 13 रेटिंग्स |
डेवलपर | https://apkmirror.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/illogical-robot/delete-single-email-extension/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Delete Key for Gmail\u2122", "version": "1.5", "author": "Illogical Robot LLC", "homepage_url": "https:\/\/github.com\/illogical-robot\/delete-single-email-extension", "description": "Delete a single email in Gmail\u2122 with a customizable user shortcut (default is Shift + 5).", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "js\/contentscript.js" ], "run_at": "document_end" } ], "options_ui": { "page": "settings.html", "open_in_tab": false }, "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" } } |