Mailbrew Read Later
Save links from around the web to read later in your brews.
什麼是Mailbrew Read Later?
Mailbrew Read Later是由https://mailbrew.com開發的Chrome擴展程式,該擴展的主要功能是“Save links from around the web to read later in your brews.”。
擴展截圖
下載Mailbrew Read Later擴展crx文件
下載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 |
ID | fgcpnflfkoclnkgkkimfpbehjopdfdem |
官方網址 | 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 } |