Gmail Unsubscribe
A chrome extension to unsubscribe emails in gmail
Gmail Unsubscribe क्या है?
Gmail Unsubscribe gordalina द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to unsubscribe emails in gmail"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Unsubscribe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Looking for a more efficient way to unsubscribe to emails? With this extension you can stop them with a single keyboard shortcut! Press Command+U (macOS) or Alt+U (Windows/Linux) when viewing the email. That's it! You can switch the shortcut by visiting chrome://extensions/shortcuts It works on your computer as a chrome extension and no data is sent to any server outside of your computer. It's 100% private.
एक्सटेंशन की मूल जानकारी
नाम | Gmail Unsubscribe |
ID | gkakfbcilfllnomafmgaekkhcmogalah |
आधिकारिक URL | https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah |
विवरण | A chrome extension to unsubscribe emails in gmail |
फ़ाइल का आकार | 17.2 KB |
स्थापना संख्या | 1,549 |
वर्तमान संस्करण | 0.1.1 |
अंतिम अपडेट | 2024-01-04 |
प्रकाशन तिथि | 2021-11-09 |
रेटिंग | 3.67/5 कुल 6 रेटिंग्स |
डेवलपर | gordalina |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/gordalina/gmail-unsubscribe |
सहायता पृष्ठ URL | https://github.com/gordalina/gmail-unsubscribe/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension to unsubscribe emails in gmail", "version": "0.1.1", "manifest_version": 3, "name": "Gmail Unsubscribe", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "service_worker": "service_worker.bundle.js" }, "commands": { "unsubscribe": { "description": "Unsubscribe from mailing list", "suggested_key": { "default": "Alt+U", "mac": "Command+U" } } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content_script.bundle.js" ] } ] } |