EZ Copy Plaintext

Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.

¿Qué es EZ Copy Plaintext?

EZ Copy Plaintext es una extensión de Chrome desarrollada por Josh, y su función principal es "Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión EZ Copy Plaintext

Descarga archivos de extensión EZ Copy Plaintext en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Automatically removes formatting from your clipboard when you use normal copy paste [Ctrl+c].  If you need to keep the formatting, you can toggle it on and off by right clicking something you've selected/highlighted and pressing 'Get format next copy'.  On the next copy you do, it will keep the formatting. Then it will reset back to the default plaintext setting for future copying.

simple and robust.

NOTE:
The extension will not be active on tabs/windows that were already open prior to the installation.  Try refreshing the tabs or open a new one to test it out.                    

Información Básica de la Extensión

Nombre EZ Copy Plaintext EZ Copy Plaintext
ID khgahhiehdlgmaoghjoegkgbfcdodnhb
URL Oficial https://chromewebstore.google.com/detail/ez-copy-plaintext/khgahhiehdlgmaoghjoegkgbfcdodnhb
Descripción Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.
Tamaño del Archivo 6.47 KB
Cantidad de Instalaciones 780
Versión Actual 1.1.5
Última Actualización 2013-03-03
Fecha de Publicación 2013-03-02
Calificación 2.54/5 Total de 26 Calificaciones
Desarrollador Josh
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EZ Copy Plaintext",
    "description": "Automatically removes formatting from your clipboard when using copy. Toggle formatting by right clicking a selection.",
    "version": "1.1.5",
    "manifest_version": 2,
    "incognito": "split",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}