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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ https://mailbrew.com/
URL หน้านโยบายความเป็นส่วนตัว 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
}