-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
38 lines (36 loc) · 1.26 KB
/
background.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
chrome.extension.onRequest.addListener(
function(request, sender, sendResponse) {
if (request.isLeft) {
// Get the currently selected tab
chrome.tabs.getSelected(null, function(tab) {
// Toggle the pinned statu
//chrome.tabs.update(tab.id, {'pinned': !tab.pinned});
chrome.tabs.getAllInWindow(null, function(tabs){
var currentTabIndex = tab.index;
if (tab.index >= tabs.length - 1) {
return;
}
var nextTab = tabs[currentTabIndex+1];
chrome.tabs.update(nextTab.id, {'active': true});
});
});
} else {
// Get the currently selected tab
chrome.tabs.getSelected(null, function(tab) {
// Toggle the pinned statu
//chrome.tabs.update(tab.id, {'pinned': !tab.pinned});
chrome.tabs.getAllInWindow(null, function(tabs){
var currentTabIndex = tab.index;
if (tab.index <= 0) {
return;
}
var nextTab = tabs[currentTabIndex-1];
chrome.tabs.update(nextTab.id, {'active': true});
});
});
}
}
);