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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |