Mobile Locker for Gmail
Share links to Mobile Locker files in Gmail.
Was ist Mobile Locker for Gmail?
Mobile Locker for Gmail ist eine Chrome-Erweiterung, die von https://mobilelocker.com entwickelt wurde, und ihr Hauptmerkmal ist "Share links to Mobile Locker files in Gmail.".
Erweiterungsscreenshots
Mobile Locker for Gmail-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mobile Locker for Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | ojehkongkhliekkfkickfgflgefcokgk |
Offizielle URL | https://chromewebstore.google.com/detail/mobile-locker-for-gmail/ojehkongkhliekkfkickfgflgefcokgk |
Beschreibung | Share links to Mobile Locker files in Gmail. |
Dateigröße | 11.1 MB |
Installationsanzahl | 42 |
Aktuelle Version | 3.0.1 |
Letztes Update | 2024-01-26 |
Veröffentlichungsdatum | 2020-05-12 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://mobilelocker.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.mobilelocker.com/gmail |
Hilfeseite URL | https://docs.mobilelocker.com/docs/install-and-use-mobile-locker-for-gmail |
URL der Datenschutzrichtlinien-Seite | https://www.mobilelocker.com/privacy |
Unterstützte Sprachen | 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\/*" ] } ] } |