Clipboard
Now you can copy any content from webpage using copy command and paste back any where within clipboard.
On this page
Clipboard Permission Required
To enable the functionality, our extension requires clipboard permission for specific sites. Please grant this permission to ensure seamless operation. Additionally, ensure that the document is open and in focus during the copy command.
Copy to Clipboard
Clipboard::Copy:: | Description (Copy text from webpage) to clipboard |
---|---|
Clipboard::Copy::[.]{6} | [.] - Any Single Character {6} - no of characters 6 |
Clipboard::Copy::[.]+ | [.] - Any Single Character + - all characters |
Clipboard::Copy::[a-z]{6} | [a-z] - A character in the range: a-z |
Clipboard::Copy::[A-Z]{6} | [A-Z] - A character in the range: A-Z |
Clipboard::Copy::[\d]{6} | [\d] - A digit |
Clipboard::Copy::[\w]{6} | [\w] - A word character |
Paste from Clipboard
Clipboard::Paste:: | Description (Paste text into field) from Clipboard |
---|---|
Clipboard::Paste:: | Simply past the content copied using Clipboard::copy:: command or whatever there in clipboard |
Clipboard::Paste::at(5) | The at() method takes an integer value and returns a new String consisting of the single UTF-16 code unit located at the specified offset. This method allows for positive and negative integers. Negative integers count back from the last string character.
|
Clipboard::Paste::charAt(4) | The charAt() method of a String instance returns a new string consisting of the single UTF-16 code unit located at the specified offset into the string.
|
Clipboard::Paste::concat("World") | The concat() method concatenates the string arguments to the calling string and returns a new string.
|
Clipboard::Paste::match(/[A-Z]/g) | The match() method retrieves the result of matching a string against a regular expression.
|
Clipboard::Paste::replace("dog", "monkey") | The replace() method returns a new string with one, some, or all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp, and the replacement can be a string or a function called for each match. If pattern is a string, only the first occurrence will be replaced. The original string is left unchanged.
|
Clipboard::Paste::replaceAll("dog", "monkey") | The replaceAll() method returns a new string with all matches of a pattern replaced by a replacement. The pattern can be a string or a RegExp, and the replacement can be a string or a function to be called for each match. The original string is left unchanged.
|
Clipboard::Paste::slice(31) | The slice() method extracts a section of a string and returns it as a new string, without modifying the original string.
|
Clipboard::Paste::split(" ") | The split() method takes a pattern and divides a String into an ordered list of substrings by searching for the pattern, puts these substrings into an array, and returns the array.
|
Clipboard::Paste::substring(1, 3) | The substring() method returns the part of the string from the start index up to and excluding the end index, or to the end of the string if no end index is supplied.
|
Clipboard::Paste::toLowerCase() | The toLowerCase() method returns the calling string value converted to lower case.
|
Clipboard::Paste::toUpperCase() | The toUpperCase() method returns the calling string value converted to uppercase (the value will be converted to a string if it isn't one).
|
Clipboard::Paste::trim() | The trim() method removes whitespace from both ends of a string and returns a new string, without modifying the original string.
To return a new string with whitespace trimmed from just one end, use trimStart() or trimEnd().
|
Clipboard::Paste::trimStart() | The trimStart() method removes whitespace from the beginning of a string and returns a new string, without modifying the original string. trimLeft() is an alias of this method.
|
Clipboard::Paste::trimEnd() | The trimEnd() method removes whitespace from the end of a string and returns a new string, without modifying the original string. trimRight() is an alias of this method.
|