Mailbrew Read Later

Save links from around the web to read later in your brews.

Cos'è Mailbrew Read Later?

Mailbrew Read Later è un'estensione di Chrome sviluppata da https://mailbrew.com, e la sua funzione principale è "Save links from around the web to read later in your brews.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mailbrew Read Later

Scarica i file di estensione Mailbrew Read Later in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Mailbrew Read Later Mailbrew Read Later
ID fgcpnflfkoclnkgkkimfpbehjopdfdem
URL Ufficiale https://chromewebstore.google.com/detail/mailbrew-read-later/fgcpnflfkoclnkgkkimfpbehjopdfdem
Descrizione Save links from around the web to read later in your brews.
Dimensione del File 19.66 KB
Conteggio Installazioni 1,004
Versione Corrente 1.2
Ultimo Aggiornamento 2022-02-25
Data di Pubblicazione 2020-09-13
Valutazione 4.43/5 Totale 7 Valutazioni
Sviluppatore https://mailbrew.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://mailbrew.com/
URL della Pagina di Aiuto https://mailbrew.com/
URL della Pagina della Politica sulla Privacy https://mailbrew.com/app-privacy
Lingue Supportate 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
}