Mobile Locker for Gmail
Share links to Mobile Locker files in Gmail.
Τι είναι το Mobile Locker for Gmail;
Το Mobile Locker for Gmail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mobilelocker.com, και η κύρια λειτουργία του είναι "Share links to Mobile Locker files in Gmail.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Mobile Locker for Gmail
Λήψη αρχείων επέκτασης Mobile Locker for Gmail σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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\/*" ] } ] } |