最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - programmatically switch to tab in Google Chrome, and open URL if tab not found - Stack Overflow

programmeradmin1浏览0评论

I'd need the following functionality for Google Chrome. I didn't find a mand line parameter that could help me here.

  • check if a URL is open in one of the Google Chrome tabs
  • if so, activate this tab
  • if not, open the URL in a new tab

Any ideas how to solve this?

I'd need the following functionality for Google Chrome. I didn't find a mand line parameter that could help me here.

  • check if a URL is open in one of the Google Chrome tabs
  • if so, activate this tab
  • if not, open the URL in a new tab

Any ideas how to solve this?

Share edited Sep 20, 2013 at 15:03 Nakilon 35.1k16 gold badges111 silver badges148 bronze badges asked Dec 7, 2010 at 14:09 Mike WarnerMike Warner 1453 silver badges8 bronze badges 1
  • 5 I don't think you'll get access to this via JavaScript or similar due to this violating the end-users security. You'll need to build a browser extension/addon. – scunliffe Commented Dec 7, 2010 at 14:12
Add a ment  | 

2 Answers 2

Reset to default 11

I think Chrome extensions docs - Tabs will help you!

Just to make it clear you can't NOT access anything beyond your Domain in JavaScript because of Same origin policy.

Using Javascript, triggering an alert can have the desired effect. Run this code in your console in one tab and switch to another tab in the same browser.

setTimeout(function(){ 
    alert("Switched tabs");
}, 
5000);

The alert appearing after the timeout will trigger tab switch. Or you can do something similar! This should however be used if absolutely necessary to move user from current tab, like Google Calendar does.

Update 2019

With new versions of Chrome, this no longer works. As pointed out in the ment below, Chrome now shows a small icon in the tab to show a window/alert has been triggered

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论