-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbackground.js
138 lines (120 loc) · 3.83 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
127
128
129
130
131
132
133
134
135
136
137
138
chrome.runtime.onInstalled.addListener(function() {
// Replace all rules ...
chrome.declarativeContent.onPageChanged.removeRules(undefined, function() {
// With a new rule ...
chrome.declarativeContent.onPageChanged.addRules([
{
// That fires when a page's URL contains a 'g' ...
conditions: [
new chrome.declarativeContent.PageStateMatcher({
pageUrl: { hostPrefix: 'www.google' , schemes: ['https']},
})
],
// And shows the extension's page action.
actions: [ new chrome.declarativeContent.ShowPageAction() ]
}
]);
});
});
var url = null;
function getCurrentTabUrl(callback) {
// Query filter to be passed to chrome.tabs.query - see
// https://developer.chrome.com/extensions/tabs#method-query
var queryInfo = {
active: true,
currentWindow: true
};
chrome.tabs.query(queryInfo, (tabs) => {
// chrome.tabs.query invokes the callback with a list of tabs that match the
// query. When the popup is opened, there is certainly a window and at least
// one tab, so we can safely assume that |tabs| is a non-empty array.
// A window can only have one active tab at a time, so the array consists of
// exactly one tab.
var tab = tabs[0];
// A tab is a plain object that provides information about the tab.
// See https://developer.chrome.com/extensions/tabs#type-Tab
url = tab.url;
//alert(url);
// tab.url is only available if the "activeTab" permission is declared.
// If you want to see the URL of other tabs (e.g. after removing active:true
// from |queryInfo|), then the "tabs" permission is required to see their
// "url" properties.
console.assert(typeof url == 'string', 'tab.url should be a string');
callback(url);
});
// Most methods of the Chrome extension APIs are asynchronous. This means that
// you CANNOT do something like this:
//
// var url;
// chrome.tabs.query(queryInfo, (tabs) => {
// url = tabs[0].url;
// });
// alert(url); // Shows "undefined", because chrome.tabs.query is async.
}
/*document.addEventListener("DOMContentLoaded",()=> {
getCurrentTabUrl((url) => {
alert(url);
});
},true);*/
chrome.tabs.onUpdated.addListener( function (tabId, changeInfo, tab) {
if (changeInfo.status == 'complete') {
// do your
getCurrentTabUrl((url) => {
// alert(url);
});
}
})
// var opt;
chrome.commands.onCommand.addListener(function(command) {
// alert(url);
//given tab is the tab ID you already have
// chrome.runtime.onMessage.addListener(
// function(request,sender,sendResponse) {
// if(request.type == "new author") {
// opt = request.author;
// }
// });
// alert(opt);
if(url.startsWith("https://www.google.") && url.includes("/search")) {
if (command == 'open_image') {
var n = url.includes("&tbm");
var str;
if(n==true){
str = url.replace(/(&tbm=)(isch|vid|nws)/,"");
str = str.concat("&tbm=isch");
}
else{
str = url.concat("&tbm=isch");
}
chrome.tabs.update({url:str});
}
else if(command == 'open_videos'){
var n = url.includes("&tbm");
var str;
if(n==true){
str = url.replace(/(&tbm=)(isch|vid|nws)/,"");
str = str.concat("&tbm=vid");
}
else{
str = url.concat("&tbm=vid");
}
chrome.tabs.update({url:str});
}
else if(command == 'open_news'){
var n = url.includes("&tbm");
var str;
if(n==true){
str = url.replace(/(&tbm=)(isch|vid|nws)/,"");
str = str.concat("&tbm=nws");
}
else{
str = url.concat("&tbm=nws");
}
chrome.tabs.update({url:str});
}
else if(command == 'open_all'){
var str = url.replace(/(&tbm=)(isch|vid|nws)/,"");
chrome.tabs.update({url:str});
}
}
});