ManyClip

A stack based copy/paste extension for Chrome.

O que é ManyClip?

ManyClip é uma extensão do Chrome desenvolvida por John Wiegert, e sua principal característica é "A stack based copy/paste extension for Chrome.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ManyClip

Baixe arquivos de extensão ManyClip 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

                        This free, Open Source extension allows you to copy and paste stacks of text or data, making clipboard use even faster and more convenient in Chrome.
It’s easy to use:
1.       Highlight the text you’d like to copy

2.       Add it to clipboard with CTRL+ALT+C

3.       Repeat steps 1 & 2 as needed

4.       Paste each piece in reverse with CTRL+ALT+V

Perfect for making lists, speeding up data entry, streamlining the process of filling out online forms, and more!

If you have any issues please email the developer at [email protected] or file an issue at https://github.com/bigcakes/ManyClip                    

Informações Básicas da Extensão

Nome ManyClip ManyClip
ID kbjmnekoahknjngcbkokjgoaoehdbcoi
URL Oficial https://chrome.google.com/webstore/detail/manyclip/kbjmnekoahknjngcbkokjgoaoehdbcoi
Descrição A stack based copy/paste extension for Chrome.
Tamanho do Arquivo 42.25 KB
Contagem de Instalações 245
Versão Atual 0.2.0
Última Atualização 2017-07-29
Data de Publicação 2017-07-29
Classificação 2.00/5 Total de 1 Avaliações
Desenvolvedor John Wiegert
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/bigcakes/ManyClip
URL da Página de Ajuda https://github.com/bigcakes/ManyClip
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ManyClip",
    "description": "A stack based copy\/paste extension for Chrome.",
    "version": "0.2.0",
    "offline_enabled": true,
    "browser_action": {
        "default_icon": "icons\/manyclip_48.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/manyclip_16.png",
        "48": "icons\/manyclip_48.png",
        "128": "icons\/manyclip_128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "clipboardRead",
        "storage",
        "unlimitedStorage"
    ]
}