ClipCopy for Tampermonkey

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

ClipCopy for Tampermonkey란 무엇입니까?

ClipCopy for Tampermonkey은(는) Rafaël Jafferali에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API"입니다.

ClipCopy for Tampermonkey 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 ClipCopy for Tampermonkey ClipCopy for Tampermonkey
ID cehieljejfgbjhogonapjjndllliopfg
공식 URL https://chrome.google.com/webstore/detail/clipcopy-for-tampermonkey/cehieljejfgbjhogonapjjndllliopfg
설명 Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API
파일 크기 30.9 KB
설치 횟수 1,905
현재 버전 0.1.1
최근 업데이트 2012-11-17
출시 날짜 2012-11-17
평점 4.05/5 총 22 개의 평점
개발자 Rafaël Jafferali
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rafjaf/ClipCopy-for-TM
지원되는 언어 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"
    ]
}