Skip to content

Instantly share code, notes, and snippets.

View tankhiwale's full-sized avatar
📖

Mayank Tankhiwale tankhiwale

📖
View GitHub Profile
@matthewmorrone
matthewmorrone / commander.js
Created September 7, 2016 17:13
for keyboard shortcuts in chrome extensions (allows more than 4)
function getTab(sender, count) {
chrome.tabs.query({
windowId: sender.tab.windowId
}, function (tabs) {
var newTabId = tabs[(((count + sender.tab.index) % tabs.length) + tabs.length) % tabs.length].id;
return chrome.tabs.update(newTabId, {
active: true
});