Ladies_Man

vkAudio background

May 9th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //===========================================================
  2. //==================== C R E A T E D ========================
  3. //===========================================================
  4. chrome.tabs.onCreated.addListener(function(id, info, tab) {
  5.    
  6.     tabsHashAppend(id, info, tab);
  7.    
  8.     if (-1 != tab.url.indexOf("vk.com/im")) {
  9.         if ("undefined" == typeof observer) {
  10.             messageObserverLaunch();
  11.         }
  12.     }
  13. });
  14.  
  15.  
  16. //===========================================================
  17. //==================== U P D A T E D ========================
  18. //===========================================================
  19. chrome.tabs.onUpdated.addListener(function(id, info, tab){
  20.    
  21.     tabsHashAppend(id, info, tab);
  22.    
  23.     if (-1 != tab.url.indexOf("vk.com")) {
  24.         if (-1 != tab.url.indexOf("/im")) {
  25.             if ("undefined" == typeof observer) {
  26.                 messageObserverLaunch();
  27.             }
  28.         }
  29.        
  30.         if (-1 != tab.url.indexOf("/audio")) {
  31.             console.log("audio list has been opened");
  32.             var imgSkullUrl = chrome.extension.getURL("images/skull_18.png");
  33.             chrome.tabs.query({ active: true, highlighted: true }, function(tabs) {
  34.                 chrome.tabs.sendMessage(tabs[0].id,
  35.                 {
  36.                     key: "audio",
  37.                     imgUrl: imgSkullUrl
  38.                 },
  39.                 function(rsp) {});
  40.             });
  41.         }
  42.     }
  43.    
  44. });
Advertisement
Add Comment
Please, Sign In to add comment