Mailbrew Read Later

Save links from around the web to read later in your brews.

ما هو Mailbrew Read Later؟

Mailbrew Read Later هو إضافة Chrome تم تطويرها بواسطة https://mailbrew.com، والميزة الرئيسية لها هي "Save links from around the web to read later in your brews.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Mailbrew Read Later

قم بتنزيل ملفات الامتداد Mailbrew Read Later بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        With this extension you can save links from around the web to Mailbrew. You will find these links in your email digest and in the Later page.

You can learn more at mailbrew.com                    

معلومات أساسية عن التمديد

الاسم Mailbrew Read Later Mailbrew Read Later
ID fgcpnflfkoclnkgkkimfpbehjopdfdem
عنوان URL الرسمي https://chromewebstore.google.com/detail/mailbrew-read-later/fgcpnflfkoclnkgkkimfpbehjopdfdem
الوصف Save links from around the web to read later in your brews.
حجم الملف 19.66 KB
عدد التثبيتات 1,004
النسخة الحالية 1.2
آخر تحديث 2022-02-25
تاريخ النشر 2020-09-13
تقييم 4.43/5 مجموع تقييمات 7
المطور https://mailbrew.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://mailbrew.com/
عنوان صفحة المساعدة https://mailbrew.com/
عنوان صفحة سياسة الخصوصية https://mailbrew.com/app-privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mailbrew Read Later",
    "version": "1.2",
    "description": "Save links from around the web to read later in your brews.",
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": [],
    "icons": {
        "16": "images\/chrome-icon16.png",
        "32": "images\/chrome-icon32.png",
        "48": "images\/chrome-icon48.png",
        "128": "images\/chrome-icon128.png"
    },
    "manifest_version": 2
}