-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbg.js
More file actions
20 lines (18 loc) · 672 Bytes
/
bg.js
File metadata and controls
20 lines (18 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//function onRequest(request, sender, sendResponse) {
// chrome.pageAction.show(sender.tab.id);
// chrome.pageAction.setTitle( {"tabId": sender.tab.id, "title": "A " + request.type + " popup was blocked on this page."} );
// //alert(request.type);
// sendResponse();
//}
//chrome.extension.onRequest.addListener (onRequest);
chrome.extension.onRequest.addListener(
function(request, sender, respond) {
chrome.pageAction.show(sender.tab.id);
chrome.pageAction.setTitle(
{
"tabId": sender.tab.id,
"title": "There appears to be feminist propaganda on this page."
}
);
}
);