regex
regex code
-
to replace an entire line that includes a keyword (ex. google)
- ^.*google.*$
-
Copy all URLs to the clipboard
- copy([...document.querySelectorAll('a')].map(a => a.href));
regex code
to replace an entire line that includes a keyword (ex. google)
Copy all URLs to the clipboard