Mobile Locker for Gmail
Share links to Mobile Locker files in Gmail.
Mobile Locker for Gmail क्या है?
Mobile Locker for Gmail https://mobilelocker.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Share links to Mobile Locker files in Gmail."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mobile Locker for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Mobile Locker for Gmail allows you to: * Access the content you need directly through Gmail * Improve conversations by easily inserting sharable links * Engage buyers by presenting like a pro * Optimize your collateral with your existing tools * Send collateral, videos, quotes, and more - without having to worry about attachment size limits * Track engagement - you'll be alerted when they engage with the content so you can follow up Requirements: * A Mobile Locker account * A Gmail account
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ojehkongkhliekkfkickfgflgefcokgk |
आधिकारिक URL | https://chromewebstore.google.com/detail/mobile-locker-for-gmail/ojehkongkhliekkfkickfgflgefcokgk |
विवरण | Share links to Mobile Locker files in Gmail. |
फ़ाइल का आकार | 11.1 MB |
स्थापना संख्या | 42 |
वर्तमान संस्करण | 3.0.1 |
अंतिम अपडेट | 2024-01-26 |
प्रकाशन तिथि | 2020-05-12 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://mobilelocker.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.mobilelocker.com/gmail |
सहायता पृष्ठ URL | https://docs.mobilelocker.com/docs/install-and-use-mobile-locker-for-gmail |
गोपनीयता नीति पृष्ठ URL | https://www.mobilelocker.com/privacy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mobile Locker for Gmail", "short_name": "Mobile Locker", "version": "3.0.1", "description": "Share links to Mobile Locker files in Gmail.", "homepage_url": "https:\/\/www.mobilelocker.com", "author": "[email protected]", "icons": { "16": "images\/mobilelocker_icon_16.png", "32": "images\/mobilelocker_icon_32.png", "48": "images\/mobilelocker_icon_48.png", "128": "images\/mobilelocker_icon_128.png" }, "action": { "default_popup": "index.html", "default_icon": { "16": "images\/mobilelocker_icon_16.png", "32": "images\/mobilelocker_icon_32.png", "48": "images\/mobilelocker_icon_48.png", "128": "images\/mobilelocker_icon_128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "mobilelocker.js" ], "run_at": "document_end" } ], "incognito": "not_allowed", "offline_enabled": false, "permissions": [ "declarativeContent", "scripting", "storage" ], "host_permissions": [ "https:\/\/assets.mobilelocker.com\/*", "https:\/\/mail.google.com\/*" ], "web_accessible_resources": [ { "resources": [ "fonts\/vendor\/@fortawesome\/fontawesome-pro\/*", "images\/*" ], "matches": [ "https:\/\/mail.google.com\/*" ] } ] } |