Email Paste

Paste Your Email address into web forms.

Was ist Email Paste?

Email Paste ist eine Chrome-Erweiterung, die von https://linangdata.com entwickelt wurde, und ihr Hauptmerkmal ist "Paste Your Email address into web forms.".

Erweiterungsscreenshots

screenshot

Email Paste-Erweiterungs-CRX-Datei herunterladen

Laden Sie Email Paste-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Tired of typing your email into form fields that don't support auto-complete?

This free tool adds a Paste Email icon to your browser toolbar. Simply type the email address you use most frequently into the tool's input box and then use the keyboard shortcut or context menu item to paste into fields on the web page you are currently viewing.

Specify an email address you want to use for pasting.
Paste with one of the following three methods:

- Use the keyboard shortcut: Control-Shift-E
- Use the Right-click context menu for the field, and then select: Paste [email protected]
- Click the Paste button on the extension popup                    

Grundlegende Informationen zur Erweiterung

Name Email Paste Email Paste
ID ajjomlicondblaanocpidednacdaonal
Offizielle URL https://chromewebstore.google.com/detail/email-paste/ajjomlicondblaanocpidednacdaonal
Beschreibung Paste Your Email address into web forms.
Dateigröße 607 KB
Installationsanzahl 142
Aktuelle Version 1.2
Letztes Update 2017-06-20
Veröffentlichungsdatum 2017-06-20
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://linangdata.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://linangdata.com/tools/pasteEmail
Hilfeseite URL http://linangdata.com/tools/pasteEmail
URL der Datenschutzrichtlinien-Seite https://linangdata.com/privacy.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email Paste",
    "description": "Paste Your Email address into web forms.",
    "version": "1.2",
    "offline_enabled": false,
    "icons": {
        "16": "icon\/16x16.png",
        "24": "icon\/24x24.png",
        "32": "icon\/32x32.png",
        "48": "icon\/48x48.png",
        "64": "icon\/64x64.png",
        "128": "icon\/128x128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "browser_action": {
        "default_icon": "icon\/48x48.png",
        "default_popup": "popup.html",
        "default_title": "Paste Email Address"
    },
    "commands": {
        "paste-email": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Paste Email address"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}