Skip to main content Skip to docs navigation
Check

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.
  • 'The quick brown fox jumps over the lazy dog.'.at(5) -> u
  • 'The quick brown fox jumps over the lazy dog.'.at(-4) -> d
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.
  • 'The quick brown fox jumps over the lazy dog.'.at(4) -> q
Clipboard::Paste::concat("World")The concat() method concatenates the string arguments to the calling string and returns a new string.
  • 'Hello'.concat(' ', 'World') -> Hello World
  • 'Hello'.concat(', ', 'World') -> Hello, World
Clipboard::Paste::match(/[A-Z]/g)The match() method retrieves the result of matching a string against a regular expression.
  • 'The quick brown fox jumps. It barked.'.match(/[A-Z]/g) -> ["T", "I"]
  • 'The quick brown fox jumps. It barked.'.match(/[A-Z]/g).join("") -> TI
  • 'The quick brown fox jumps. It barked.'.match(/[A-Z]/g).join(",") -> T,I
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.
  • 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?'.replace("dog", "monkey") -> The quick brown fox jumps over the lazy monkey. If the dog reacted, was it really lazy?
  • 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?'.replace(/Dog/i, "ferret") -> The quick brown fox jumps over the lazy ferret. If the dog reacted, was it really lazy?
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.
  • 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?'.replaceAll("dog", "monkey") -> The quick brown fox jumps over the lazy monkey. If the monkey reacted, was it really lazy?
  • 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?'.replaceAll(/Dog/i, "ferret") -> The quick brown fox jumps over the lazy ferret. If the ferret reacted, was it really lazy?
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.
  • 'The quick brown fox jumps over the lazy dog.'.slice(31) -> the lazy dog.
  • 'The quick brown fox jumps over the lazy dog.'.slice(4, 19) -> quick brown fox
  • 'The quick brown fox jumps over the lazy dog.'.slice(-4) -> dog
  • 'The quick brown fox jumps over the lazy dog.'.slice(-9, -5) -> lazy
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.
  • 'The quick brown fox jumps over the lazy dog.'.split(' ')[3] -> fox
  • 'The quick brown fox jumps over the lazy dog.'.split('')[8] -> k
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.
  • 'Auto Clicker AutoFill'.substring(1,3) -> to
  • 'Auto Clicker AutoFill'.substring(5) -> Clicker AutoFill
Clipboard::Paste::toLowerCase()The toLowerCase() method returns the calling string value converted to lower case.
  • 'Auto Clicker AutoFill'.toLowerCase() -> auto clicker autofill
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).
  • 'Auto Clicker AutoFill'.toUpperCase() -> AUTO CLICKER AUTOFILL
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().
  • '     Auto Clicker AutoFill     '.trim() -> Auto Clicker AutoFill
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.
  • '     Auto Clicker AutoFill     '.trimStart() -> Auto Clicker AutoFill     
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.
  • '     Auto Clicker AutoFill     '.trimEnd() ->      Auto Clicker AutoFill