Results 1 to 2 of 2

This is a discussion on Differentiate popup event.. within the Plugins Development section, part of the Chrome Plugins category: Hi All, I am searching for popup window event in chrome. using Code: chrome.windows.onCreated.addListener.. i get window event, i want ...


  1. #1
    pornima is offline Junior Member
    Join Date
    Jan 2010
    Posts
    13

    Default Differentiate popup event..

    Hi All,

    I am searching for popup window event in chrome.
    using
    Code:
    chrome.windows.onCreated.addListener..
    i get window event, i want to differentiate normal & popup window..


    Thanks & Regards,
    Sheetal.

  2. #2
    Waha's Avatar
    Waha is offline Senior Member
    Join Date
    Apr 2009
    Location
    Oregon
    Posts
    788

    Default

    If you mean a popup window like that made by window.open() method, I would suggest hooking that method. To explain, that means backing up the original function, and replacing it with your own that will call the original, along with your own code.
    Code:
    var oldWindowOpen = window.open;
    window.open = function(x,y,z){
    	//Your code that needs to execute BEFORE the original
    	var ret = oldWindowOpen(x,y,z);
    	//Your code that needs to execute AFTER the original
    	return ret;
    }
    There's a rather nice explanation of how this works here.
    ~ Projects ~
    Specialized: Carapass Auction Watcher, Kongregate Chat
    Libraries: bliplib
    Tools: manifest syntax highlighting & snippits
    ~ Happy to make extensions for pay too ;D ~
    Portfolio: Search and Share

Similar Threads

  1. popup window event
    By pornima in forum Plugins Development
    Replies: 2
    Last Post: 02-11-2010, 02:39 AM
  2. Popup size
    By mg2 in forum Plugins Development
    Replies: 2
    Last Post: 11-24-2009, 02:21 PM
  3. Crash Event id 1000
    By reidy100 in forum Chrome Troubleshooting
    Replies: 6
    Last Post: 10-28-2009, 01:16 PM
  4. How can I block a popup?
    By Glennie in forum Chrome Tips & Tricks
    Replies: 3
    Last Post: 09-30-2009, 01:12 AM
  5. Event when x element is loaded
    By noctourne in forum Plugins Development
    Replies: 6
    Last Post: 08-01-2009, 10:21 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •