Mailbrew Read Later
Save links from around the web to read later in your brews.
What is Mailbrew Read Later?
Mailbrew Read Later is a Chrome extension developed by https://mailbrew.com, and its main feature is "Save links from around the web to read later in your brews.".
Extension Screenshots
Download Mailbrew Read Later Extension CRX File
Download Mailbrew Read Later extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Mailbrew Read Later |
ID | fgcpnflfkoclnkgkkimfpbehjopdfdem |
Official URL | https://chromewebstore.google.com/detail/mailbrew-read-later/fgcpnflfkoclnkgkkimfpbehjopdfdem |
Description | Save links from around the web to read later in your brews. |
File Size | 19.66 KB |
Installation Count | 1,004 |
Current Version | 1.2 |
Last Updated | 2022-02-25 |
Publish Date | 2020-09-13 |
Rating | 4.43/5 Total 7 Ratings |
Developer | https://mailbrew.com |
[email protected] | |
Payment Type | free |
Extension Website | https://mailbrew.com/ |
Help Page URL | https://mailbrew.com/ |
Privacy Policy Page URL | https://mailbrew.com/app-privacy |
Supported Languages | 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 } |