ClipCopy for Tampermonkey

Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API

O que é ClipCopy for Tampermonkey?

ClipCopy for Tampermonkey é uma extensão do Chrome desenvolvida por Rafaël Jafferali, e sua principal característica é "Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API".

Baixar o arquivo CRX da Extensão ClipCopy for Tampermonkey

Baixe arquivos de extensão ClipCopy for Tampermonkey 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

                        WARNING: this add-on has become obsolete since version 2.7.2890 of Tampermonkey, which implements GM_setClipboard by default.

This program is an add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API.

The GM_setClipboard API was introduced in Scriptish, an add-on for Firefox introducing new functionalities in comparison to Greasemonkey. This extension aims at emulating this particular API.

To activate GM_setClipboard API, insert the following line in the metadata block of your userscript:

// @require https://raw.github.com/rafjaf/ClipCopy-for-TM/master/lib/installGM_setClipboard.js

Afterwards, your can make your userscript copy text to the clipboard with the following command :

GM_setClipboard("Text to copy to the clipboard");

You can even copy formatted text this way :

GM_setClipboard("Formatted text to copy to the clipboard. Wow!", "html");

If you use the above-mentionned @require metatag, your userscript will still remain compatible with Scriptish. However, the GM_setClipboard API will not be available in Greasemonkey.                    

Informações Básicas da Extensão

Nome ClipCopy for Tampermonkey ClipCopy for Tampermonkey
ID cehieljejfgbjhogonapjjndllliopfg
URL Oficial https://chrome.google.com/webstore/detail/clipcopy-for-tampermonkey/cehieljejfgbjhogonapjjndllliopfg
Descrição Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API
Tamanho do Arquivo 30.9 KB
Contagem de Instalações 1,905
Versão Atual 0.1.1
Última Atualização 2012-11-17
Data de Publicação 2012-11-17
Classificação 4.05/5 Total de 22 Avaliações
Desenvolvedor Rafaël Jafferali
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/rafjaf/ClipCopy-for-TM
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ClipCopy for Tampermonkey",
    "version": "0.1.1",
    "manifest_version": 2,
    "description": "Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API",
    "icons": {
        "16": "\/img\/icon16.png",
        "48": "\/img\/icon48.png",
        "128": "\/img\/icon128.png"
    },
    "background": {
        "page": "\/bg\/background.html"
    },
    "options_page": "\/about\/about.html",
    "permissions": [
        "clipboardWrite",
        "storage"
    ]
}