Mailbrew Read Later
Save links from around the web to read later in your brews.
Apa itu Mailbrew Read Later?
Mailbrew Read Later adalah ekstensi Chrome yang dikembangkan oleh https://mailbrew.com, dan fitur utamanya adalah "Save links from around the web to read later in your brews.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Mailbrew Read Later
Unduh file ekstensi Mailbrew Read Later dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Mailbrew Read Later |
ID | fgcpnflfkoclnkgkkimfpbehjopdfdem |
URL Resmi | https://chromewebstore.google.com/detail/mailbrew-read-later/fgcpnflfkoclnkgkkimfpbehjopdfdem |
Deskripsi | Save links from around the web to read later in your brews. |
Ukuran File | 19.66 KB |
Jumlah Instalasi | 1,004 |
Versi Saat Ini | 1.2 |
Terakhir Diperbarui | 2022-02-25 |
Tanggal Publikasi | 2020-09-13 |
Penilaian | 4.43/5 Total 7 Penilaian |
Pengembang | https://mailbrew.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://mailbrew.com/ |
URL Halaman Bantuan | https://mailbrew.com/ |
URL Halaman Kebijakan Privasi | https://mailbrew.com/app-privacy |
Bahasa yang Didukung | 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 } |