question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Feature Request: copy all tab urls (yY)

See original GitHub issue

There are many situations which the user end up with lots of tabs. It would be great to press something like yY to copy all open tabs url and move on (e.g. copy them somewhere and save memory by closing them). Unfortunately I don’t have the JavaScript knowledge to figure this out.

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Reactions:1
  • Comments:14 (9 by maintainers)

github_iconTop GitHub Comments

3reactions
brookhongcommented, Nov 21, 2019

Yes, runtime.command has been removed, please use RUNTIME as below,

mapkey('yY', '#1Copy all tabs url', function() {
    RUNTIME('getTabs', null, function (response) {
        Clipboard.write([window.location.href].concat(response.tabs.map(tab => tab.url)).join('\n'))
    })
});
3reactions
slavaGanzincommented, Jul 8, 2018

@sadid

mapkey('yY', '#1Copy all tabs url', function() {
	runtime.command({action: 'getTabs'}, function (response) {
	 Clipboard.write([window.location.href].concat(response.tabs.map(tab => tab.url)).join('\n'))
	})
})
Read more comments on GitHub >

github_iconTop Results From Across the Web

copy URL/copy URL of all child tabs · Issue #2747 ... - GitHub
Feature request : copy URL/copy URL of all child tabs #2747 ... that list into a note somewhere, and then close that entire...
Read more >
How to Copy the URLs From All Open Tabs in Your Browser
Click the TabCopy button on the toolbar to access the TabCopy drop-down dialog box. You can copy the URL for the selected tab,...
Read more >
Is there a way to copy URLs from all open tabs in a Google ...
Press Ctrl + c on Windows/Linux or ⌘ + c on Mac to copy all urls (and only urls). Chrome version 40 "Bookmark...
Read more >
How to Copy All of Your Open Tabs Names and ... - YouTube
If you find yourself working on a different computer at school or at the office for example and want to save the open...
Read more >
Copy All Tab Urls – Get this Extension for Firefox (en-US)
An extension to copy all Tab Urls With the settings in Options Page You can choose. WHERE to copy, selecting: - Current Window...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found