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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add-on for Tampermonkey allowing an userscript to copy text to the clipboard using GM_setClipboard API"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ClipCopy for Tampermonkey एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |