Mailbrew Read Later

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

Vad är Mailbrew Read Later?

Mailbrew Read Later är en Chrome-tillägg utvecklad av https://mailbrew.com, och dess huvudfunktion är "Save links from around the web to read later in your brews.".

Tilläggsskärmbilder

screenshot

Ladda ner Mailbrew Read Later-förlängningens CRX-fil

Ladda ner Mailbrew Read Later-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Mailbrew Read Later Mailbrew Read Later
ID fgcpnflfkoclnkgkkimfpbehjopdfdem
Officiell webbadress https://chromewebstore.google.com/detail/mailbrew-read-later/fgcpnflfkoclnkgkkimfpbehjopdfdem
Beskrivning Save links from around the web to read later in your brews.
Filstorlek 19.66 KB
Antal Installationer 1,004
Aktuell Version 1.2
Senast Uppdaterad 2022-02-25
Publiceringsdatum 2020-09-13
Betyg 4.43/5 Totalt 7 Betyg
Utvecklare https://mailbrew.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://mailbrew.com/
Hjälpsida URL https://mailbrew.com/
URL till Sekretesspolicy Sidan https://mailbrew.com/app-privacy
Stödda Språk 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
}