Mailbrew Read Later
Save links from around the web to read later in your brews.
Co to jest Mailbrew Read Later?
Mailbrew Read Later to rozszerzenie Chrome opracowane przez https://mailbrew.com, a jego główną funkcją jest „Save links from around the web to read later in your brews.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mailbrew Read Later
Pobierz pliki rozszerzeń Mailbrew Read Later w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Mailbrew Read Later |
ID | fgcpnflfkoclnkgkkimfpbehjopdfdem |
Oficjalny URL | https://chromewebstore.google.com/detail/mailbrew-read-later/fgcpnflfkoclnkgkkimfpbehjopdfdem |
Opis | Save links from around the web to read later in your brews. |
Rozmiar pliku | 19.66 KB |
Liczba instalacji | 1,004 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2022-02-25 |
Data Publikacji | 2020-09-13 |
Ocena | 4.43/5 Łącznie 7 Oceny |
Deweloper | https://mailbrew.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://mailbrew.com/ |
Adres URL Strony Pomocy | https://mailbrew.com/ |
Adres URL Strony Polityki Prywatności | https://mailbrew.com/app-privacy |
Obsługiwane Języki | 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 } |