forked from huyz/google-plus-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
56 lines (51 loc) · 2.33 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
/*
* Filename: background.js
* More info, see: gpme.js
*
* Web: http://huyz.us/google-plus-me/
* Source: https://github.com/huyz/google-plus-me
* Author: Huy Z http://huyz.us/
*/
// Default options
if (localStorage.getItem('gpme_options_mode') == null)
localStorage.setItem('gpme_options_mode', 'expanded');
// Check installed version
var oldVersion = localStorage.getItem('version');
var version = chrome.app.getDetails().version;
if (version != oldVersion) {
// NOTE: we don't use the prefix 'gpme_' so that it doesn't get wiped out by a reset
localStorage.setItem('version', version);
// If first-time install, inject into any currently-open pages
if (oldVersion === null) {
console.log("gpme: looks like first-time install");
chrome.windows.getAll({populate: true}, function(windows) {
windows.forEach(function(w) {
w.tabs.forEach(function(tab) {
if (tab.url.match(/^https?:\/\/plus\.google\.com\//)) {
//chrome.tabs.insertCSS(tab.id, {file: 'gpme.css', allFrames: true});
chrome.tabs.executeScript(tab.id, {file: 'jquery.js', allFrames: true});
chrome.tabs.executeScript(tab.id, {file: 'jquery.ba-throttle-debounce.js', allFrames: true});
chrome.tabs.executeScript(tab.id, {file: 'jquery.hoverIntent.js', allFrames: true});
chrome.tabs.executeScript(tab.id, {file: 'jquery.scrollintoview.js', allFrames: true});
chrome.tabs.executeScript(tab.id, {file: 'jquery.actual.js', allFrames: true});
chrome.tabs.executeScript(tab.id, {file: 'gpme.js', allFrames: true});
}
});
});
});
}
}
// Listen to incoming messages from content scripts
chrome.extension.onRequest.addListener(function(request, sender, sendResponse) {
if (request.action == 'gpmeStatusUpdate') {
chrome.browserAction.setBadgeText({text: (request.count ? request.count.toString() : "")});
} else if (request.action == 'gpmeGetModeOption') {
sendResponse(localStorage.getItem('gpme_options_mode'));
}
});
// Listen to tab updates from Chrome (back and forward buttons)
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
if (changeInfo.status == 'complete' && tab.url.match(/plus\.google\.com\//i)) {
chrome.tabs.sendRequest(tabId, {action: 'gpmeTabUpdateComplete'});
}
});