Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // chrome.tabs.getCurrent(function(tab) {
- // console.log(tab);
- // });
- chrome.tabs.getSelected(null, function(tab){
- console.log(tab);
- });
- //
- // console.log(chrome.webRequest);
- chrome.extension.sendMessage('load', function(response) {
- console.log(response);
- });
- //
- console.log('started');
- // var found = [];
- chrome.extension.onMessage.addListener(function(cmd, sender, sendResponse) {
- // if (cmd == 'load') {
- //
- // }
- // задел на будущее
- });
- chrome.webRequest.onHeadersReceived.addListener(function(info) {
- // info.url
- console.log(info);
- // console.log(info.responseHeaders);
- }, {urls: ['*://*/*']}, ['responseHeaders']);
Advertisement
Add Comment
Please, Sign In to add comment