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…

O que é Copy & Paste?

Copy & Paste é uma extensão do Chrome desenvolvida por gal.bogdan2015, e sua principal característica é "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 Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Copy & Paste

Baixe arquivos de extensão Copy & Paste no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Copy & Paste Copy & Paste
ID oijiikmgkljldpbpddpmhiblpgkciobn
URL Oficial https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn
Descrição 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…
Tamanho do Arquivo 81.47 KB
Contagem de Instalações 889
Versão Atual 1.0
Última Atualização 2020-06-29
Data de Publicação 2020-06-28
Desenvolvedor gal.bogdan2015
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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'"
}