mirror of
https://github.com/anticensority/runet-censorship-bypass.git
synced 2024-11-24 02:13:43 +03:00
30 lines
568 B
JavaScript
Executable File
30 lines
568 B
JavaScript
Executable File
'use strict';
|
|
|
|
function blockInform(details) {
|
|
if (details.tabId !== -1 && details.ip === antizapret.proxyIp) {
|
|
|
|
chrome.pageAction.setIcon({
|
|
path: '/icons/rkn-empty.png',
|
|
tabId: details.tabId
|
|
});
|
|
|
|
chrome.pageAction.setTitle({
|
|
title: 'Сайт блокирован!',
|
|
tabId: details.tabId
|
|
});
|
|
|
|
chrome.pageAction.show(details.tabId);
|
|
|
|
}
|
|
}
|
|
|
|
chrome.webRequest.onCompleted.addListener(
|
|
blockInform,
|
|
{ urls: ['<all_urls>'] }
|
|
);
|
|
|
|
chrome.webRequest.onErrorOccurred.addListener(
|
|
blockInform,
|
|
{ urls: ['<all_urls>'] }
|
|
);
|