forked from arajajyothibabu/mute-inactive-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
126 lines (112 loc) · 3.36 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* Created by jyothi on 13/9/17.
*/
var enabled = true, extensionId;
function updateTabAudibleState(tabId, mute) {
chrome.tabs.update(tabId, {muted: mute});
}
function muteAllTabsExcept(tabId) {
chrome.tabs.query({}, function (tabs) {
tabs.forEach(function (tab) {
if (tab.audible && tab.id !== tabId) {
updateTabAudibleState(tab.id, true);
}
});
});
}
function unmuteAllTabs() {
chrome.tabs.query({}, function (tabs) {
tabs.forEach(function (tab) {
if(tab.audible) {
updateTabAudibleState(tab.id, false);
}
});
});
}
function unmuteIfOnlyOneAvailable() {
chrome.tabs.query({}, function (tabs) {
var tabsWithSound = tabs.some(function (tab) {
return tab.audible && !tab.mutedInfo.muted;
});
if(!tabsWithSound) {
var tabsWithSoundButMuted = tabs.filter(function (tab) {
return tab.audible && tab.mutedInfo.muted && tab.mutedInfo.extensionId === extensionId;
});
if (tabsWithSoundButMuted.length > 0) {
updateTabAudibleState(tabsWithSoundButMuted[0].id, false);
}
}
});
}
function executeIfCurrentTabAudible(callback, fallback) {
chrome.tabs.query({active: true, currentWindow: true}, function (tabs) {
var activeTab = tabs[0];
if(tabs.length > 0) {
updateTabAudibleState(activeTab.id, false);
if(activeTab.audible) {
callback(activeTab.id);
}else{
fallback(activeTab.id);
}
}
});
}
chrome.management.getSelf(function (info) {
extensionId = info.id;
});
chrome.browserAction.onClicked.addListener(function(tab) {
enabled = !enabled;
var t = enabled ? 'Unm' : 'M';
var d = enabled ? '' : 'd';
chrome.browserAction.setTitle({title: t + "ute Inactive Tabs"});
chrome.browserAction.setIcon({
path: {
'16': 'icons/icon' + d + '-16.png',
'32': 'icons/icon' + d + '-32.png',
'48': 'icons/icon' + d + '-48.png',
'128': 'icons/icon' + d + '-128.png'
}
});
manageAudio();
if(!enabled){
unmuteAllTabs();
}else{
unmuteIfOnlyOneAvailable();
}
});
function manageAudio(activeTab, windowChanged) {
if(!enabled) return;
if(windowChanged && activeTab.mutedInfo && activeTab.mutedInfo.muted){
muteAllTabsExcept(activeTab.id);
updateTabAudibleState(activeTab.id, false);
return;
}
updateTabAudibleState(activeTab.id, false);
if(activeTab.audible) {
muteAllTabsExcept(activeTab.id);
}else{
unmuteIfOnlyOneAvailable();
}
}
var AUDIBLE = "audible";
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab){
if(changeInfo.hasOwnProperty(AUDIBLE)){
manageAudio(tab);
}
});
chrome.tabs.onActivated.addListener(function(activeInfo){
var tabId = activeInfo.tabId;
chrome.tabs.get(tabId, function(tab){
manageAudio(tab);
});
});
chrome.windows.onFocusChanged.addListener(function(windowId){
if(windowId && windowId > -1){
chrome.tabs.query({active: true, currentWindow: true}, function(tabs){
var tab = tabs[0];
if(tab) {
manageAudio(tab, windowId);
}
});
}
});