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 |
公式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 |
Eメール | [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\/*" ] } ] } |