Copy & Paste

The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…

¿Qué es Copy & Paste?

Copy & Paste es una extensión de Chrome desarrollada por gal.bogdan2015, y su función principal es "The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Copy & Paste

Descarga archivos de extensión Copy & Paste 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

                        The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them.

Save the data you need with one click by simply copying it.

Just use Ctrl+c.                    

Información Básica de la Extensión

Nombre Copy & Paste Copy & Paste
ID oijiikmgkljldpbpddpmhiblpgkciobn
URL Oficial https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn
Descripción The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
Tamaño del Archivo 81.47 KB
Cantidad de Instalaciones 889
Versión Actual 1.0
Última Actualización 2020-06-29
Fecha de Publicación 2020-06-28
Desarrollador gal.bogdan2015
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy & Paste",
    "version": "1.0",
    "icons": {
        "32": "img\/logo32.png",
        "48": "img\/logo48.png"
    },
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "*:\/\/fonts.googleapis.com\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.2.1.min.js",
            "js\/libs\/safeResponse.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/oncopy.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Copy & Paste",
        "default_icon": "img\/logo64.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}