Dabble Messages

Add email client features directly to LinkedIn Messages. Snooze, Pinning, Reminders and Snippets.

Dabble Messages là gì?

Dabble Messages là một tiện ích mở rộng Chrome được phát triển bởi Red35 Productivity Apps, và tính năng chính của nó là "Add email client features directly to LinkedIn Messages. Snooze, Pinning, Reminders and Snippets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dabble Messages

Tải xuống các tệp mở rộng Dabble Messages dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dabble Messages Dabble Messages
ID pcaplbbinhgehahklhidhlchenddfnhe
URL Chính Thức https://chromewebstore.google.com/detail/dabble-messages/pcaplbbinhgehahklhidhlchenddfnhe
Mô tả Add email client features directly to LinkedIn Messages. Snooze, Pinning, Reminders and Snippets.
Kích Thước Tệp 732 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2023-06-30
Ngày Phát Hành 2023-05-10
Nhà Phát Triển Red35 Productivity Apps
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://www.getdabble.io/
URL Trang Chính Sách Bảo Mật https://www.getdabble.io/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}