Mobile Locker for Gmail
Share links to Mobile Locker files in Gmail.
什麼是Mobile Locker for Gmail?
Mobile Locker for Gmail是由https://mobilelocker.com開發的Chrome擴展程式,該擴展的主要功能是“Share links to Mobile Locker files in Gmail.”。
擴展截圖
下載Mobile Locker for Gmail擴展crx文件
下載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 |
官方網址 | 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\/*" ] } ] } |