Mailbrew Read Later
Save links from around the web to read later in your brews.
Was ist Mailbrew Read Later?
Mailbrew Read Later ist eine Chrome-Erweiterung, die von https://mailbrew.com entwickelt wurde, und ihr Hauptmerkmal ist "Save links from around the web to read later in your brews.".
Erweiterungsscreenshots
Mailbrew Read Later-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mailbrew Read Later-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Mailbrew Read Later |
ID | fgcpnflfkoclnkgkkimfpbehjopdfdem |
Offizielle URL | https://chromewebstore.google.com/detail/mailbrew-read-later/fgcpnflfkoclnkgkkimfpbehjopdfdem |
Beschreibung | Save links from around the web to read later in your brews. |
Dateigröße | 19.66 KB |
Installationsanzahl | 1,004 |
Aktuelle Version | 1.2 |
Letztes Update | 2022-02-25 |
Veröffentlichungsdatum | 2020-09-13 |
Bewertung | 4.43/5 Insgesamt 7 Bewertungen |
Entwickler | https://mailbrew.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://mailbrew.com/ |
Hilfeseite URL | https://mailbrew.com/ |
URL der Datenschutzrichtlinien-Seite | https://mailbrew.com/app-privacy |
Unterstützte Sprachen | 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 } |