Dabble Messages
Add email client features directly to LinkedIn Messages. Snooze, Pinning, Reminders and Snippets.
什么是Dabble Messages?
Dabble Messages是由Red35 Productivity Apps开发的Chrome扩展程序,该扩展的主要功能是“Add email client features directly to LinkedIn Messages. Snooze, Pinning, Reminders and Snippets.”。
扩展截图
下载Dabble Messages扩展crx文件
下载Dabble Messages扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
LinkedIn was created as a "Business Social Network" and it's never graduated beyond that. But 90% of users would consider it an integral part of their tech stack - everyone from Marketers to Sales people to Recruiters.... all use LinkedIn every day. Since LinkedIn has become an integral part of the tech stack it's time that it starts acting like it. Dabble powers up your Messages to behave like an actual Inbox by adding features such as Snooze, Snippets, Pinning and Send Reminders.
扩展基本信息
名称 | Dabble Messages |
ID | pcaplbbinhgehahklhidhlchenddfnhe |
官方URL | https://chromewebstore.google.com/detail/dabble-messages/pcaplbbinhgehahklhidhlchenddfnhe |
简介 | Add email client features directly to LinkedIn Messages. Snooze, Pinning, Reminders and Snippets. |
文件大小 | 732 KB |
安装次数 | 23 |
当前版本 | 1.1.1 |
更新时间 | 2023-06-30 |
上架时间 | 2023-05-10 |
开发者 | Red35 Productivity Apps |
电子邮箱 | [email protected] |
付费类型 | in_app |
扩展官网 | https://www.getdabble.io/ |
隐私政策页面URL | https://www.getdabble.io/privacy-policy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dabble Messages", "description": "Add email client features directly to LinkedIn Messages. Snooze, Pinning, Reminders and Snippets.", "homepage_url": "https:\/\/www.getdabble.io\/how-it-works", "version": "1.1.1", "manifest_version": 3, "icons": { "16": "logo\/logo-16.png", "48": "logo\/logo-48.png", "128": "logo\/logo-128.png" }, "action": { "default_title": "Dabble Messages", "default_popup": "popup.html" }, "content_scripts": [ { "run_at": "document_start", "js": [ "before.js" ], "matches": [ "https:\/\/www.linkedin.com\/*", "http:\/\/www.linkedin.com\/*" ] }, { "run_at": "document_idle", "css": [ "bootstrap.css", "custom.css" ], "js": [ "jquery.js", "bootstrap.min.js", "moment.min.js" ], "matches": [ "https:\/\/www.linkedin.com\/*", "http:\/\/www.linkedin.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "\/images\/*" ], "matches": [ "https:\/\/www.linkedin.com\/*" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "storage", "scripting", "unlimitedStorage", "identity" ], "host_permissions": [ "https:\/\/www.linkedin.com\/*", "http:\/\/www.linkedin.com\/*", "https:\/\/dev-1fo4733y5vtbyqis.us.auth0.com\/*", "https:\/\/checkout.stripe.com\/checkout.js" ] } |