Email This

Save ad-free articles and web pages to your email inbox for later reading.

Co je Email This?

Email This je rozšíření Chrome vyvinuté https://www.emailthis.me, a jeho hlavní funkcí je „Save ad-free articles and web pages to your email inbox for later reading.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Email This

Stáhněte si soubory rozšíření Email This ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Found a great article but don’t have time to read it now? Save the web page to your email and read it later. 
Email This removes ads, distractions and crufty sidebars from a web page and sends a cleaned-up, readable view of the page to your email inbox. You can then open up your email inbox and read your saved articles whenever you want.

Email This is a simpler alternative to bookmarking and "read later" tools like Pocket, Instapaper & Readability. There is no need to signup for a new service or install any additional applications to read your saved bookmarks. You can even access your saved bookmarks offline on your mobile phones and tablets.

Benefits & features

* Save any web page or article with one-click

* Save the current page with a keyboard shortcut

* [NEW] Add notes and keywords to your saved pages. This helps you search for your content faster.

* [NEW] Include PDF snapshot of all web pages

* [NEW] PDF files, images, DOCX, PPTs and Excel sheets will be automatically downloaded and sent as email attachments.

* Right-click and save links without opening them. We will open up that link, extract useful content from it and send you an email with its contents.

* [NEW] From your mobile devices (both Android or iOS) use the share menu and send a link to [email protected]. EmailThis will reply with the contents of that page.

* Automatically adds a bookmarklet that lets you save pages from mobile and tablet devices (Chrome for Android, iPhone, iPad etc).

* Completely free to use.                    

Základní Informace o Rozšíření

Název Email This Email This
ID lgblkllcjgihfnlefhnnpppndbbjallh
Oficiální URL https://chromewebstore.google.com/detail/email-this/lgblkllcjgihfnlefhnnpppndbbjallh
Popis Save ad-free articles and web pages to your email inbox for later reading.
Velikost souboru 509 KB
Počet instalací 10,000
Aktuální Verze 2.6.5
Poslední Aktualizace 2021-08-29
Datum Vydání 2019-11-27
Hodnocení 4.18/5 Celkem 395 Hodnocení
Vývojář https://www.emailthis.me
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.emailthis.me
URL Stránky Nápovědy https://www.emailthis.me/pages/faqs
URL Stránky Zásad Ochrany Soukromí https://www.emailthis.me/pages/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "author": "Abhayam",
    "version": "2.6.5",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "background": {
        "persistent": true,
        "scripts": [
            "scripts\/vendor\/browser-polyfill.js",
            "scripts\/vendor\/hyperapp.min.js",
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/vendor\/browser-polyfill.js",
                "scripts\/vendor\/hyperapp.min.js",
                "scripts\/vendor\/Readability.js",
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/popup.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "scripts\/content\/modifiers\/hn.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "scripts\/content\/modifiers\/twitter.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/www.reddit.com\/*",
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "scripts\/content\/modifiers\/reddit.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/*",
                "http:\/\/*.wikipedia.org\/*",
                "https:\/\/*.m.wikipedia.org\/*",
                "http:\/\/*.m.wikipedia.org\/*"
            ],
            "js": [
                "scripts\/content\/modifiers\/wikipedia.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "images\/save.png",
        "images\/save-success.png",
        "images\/save-failure.png",
        "images\/extract.png",
        "images\/note-bg.png",
        "images\/checkmark.gif",
        "images\/lock.png",
        "options.html"
    ],
    "commands": {
        "save-page-shortcut": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "windows": "Ctrl+Shift+U",
                "mac": "Ctrl+Shift+U",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+U"
            },
            "description": "Email This Page"
        }
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "__MSG_btnTooltip__"
    },
    "options_page": "options.html"
}