Mobile Locker for Gmail
Share links to Mobile Locker files in Gmail.
Qu'est-ce que Mobile Locker for Gmail ?
Mobile Locker for Gmail est une extension Chrome développée par https://mobilelocker.com, et sa fonction principale est "Share links to Mobile Locker files in Gmail.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mobile Locker for Gmail
Téléchargez les fichiers d'extension Mobile Locker for Gmail au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | ojehkongkhliekkfkickfgflgefcokgk |
URL Officiel | https://chromewebstore.google.com/detail/mobile-locker-for-gmail/ojehkongkhliekkfkickfgflgefcokgk |
Description | Share links to Mobile Locker files in Gmail. |
Taille du Fichier | 11.1 MB |
Nombre d'Installations | 42 |
Version Actuelle | 3.0.1 |
Dernière Mise à Jour | 2024-01-26 |
Date de Publication | 2020-05-12 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://mobilelocker.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.mobilelocker.com/gmail |
URL de la Page d'Aide | https://docs.mobilelocker.com/docs/install-and-use-mobile-locker-for-gmail |
URL de la Page de Politique de Confidentialité | https://www.mobilelocker.com/privacy |
Langues Prises en Charge | 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\/*" ] } ] } |