thanks bro, what i learned within last few days is chrome addons are not mature like firefox. we can do only few things what google want us to do. i think they need to follow some model that will allow us to customize the whole browser.
Hrishikesh On Wed, Dec 9, 2009 at 11:58 AM, PhistucK <[email protected]> wrote: > From the bottom up - > > You cannot manipulate anything in the status bubble (status bar) of Chrome. > > You can find out the state of the page through regular JavaScript > (document.readyState or through an event document.onreadystatechange in case > it works in non XMLHttpRequest types). > > I believe it might be possible, in an indirect way. You can create a > browser action, which sends a message to content scripts. In the content > script, you can manipulate the DOM of that page and add frames or whatever > and also add an event listener for the onreadystatechange (if possible). > When the readyState value is 4, you can manipulate the frame you added. > Though, this can be problematic, because you are actually trying to load a > chrome-extension:// page inside a regular web page. Even if it works, I > think you are losing all of the Chrome Extension APIs, but you can maybe > work around it by sending a message from there as well. > > > ☆PhistucK > > > > On Wed, Dec 9, 2009 at 08:19, Hrishikesh Kale <[email protected]>wrote: > >> thanks PhistucK, >> >> what i want to do is i want to add a browser control which can show one >> page in a window in chrome browser above the page opened in the actual >> chrome browser. and on page load event i want to refrest that page in my >> additional browser control based on data in page opened in actual browser. >> >> is it possible to do? >> >> also i want to know how i can detect the document load event. i want to >> display some data when some page is completely loaded in the browser. >> >> can i add a data in status bar of chrome? >> >> lots of questions. please help me. >> >> Thanks >> >> >> On Wed, Dec 9, 2009 at 11:44 AM, PhistucK <[email protected]> wrote: >> >>> If by "some controls" and "browser control" you mean buttons - then no, >>> you cannot have several buttons within a single extension. >>> You also cannot create a whole new toolbar as of now. >>> The model of Chrome extension system is one feature per extension, so you >>> have to create several extension to create several buttons (Browser Actions >>> or Page Actions). >>> And in case you wondered - extensions cannot be grouped, the user will >>> have to install all of the extensions, one by one. >>> >>> ☆PhistucK >>> >>> >>> On Wed, Dec 9, 2009 at 05:09, Hrishikesh <[email protected]> wrote: >>> >>>> hi, >>>> >>>> i want to port my firefox extension on chrome. i want to add extra >>>> toolbar. i have some controls and one browser control which show a >>>> page depending upon the user;s actions. >>>> >>>> please help me. is this possible with the chrome extension >>>> capabilities? >>>> >>>> thanks >>>> >>>> -- >>>> >>>> You received this message because you are subscribed to the Google >>>> Groups "Chromium-extensions" group. >>>> To post to this group, send email to >>>> [email protected]. >>>> To unsubscribe from this group, send email to >>>> [email protected]<chromium-extensions%[email protected]> >>>> . >>>> For more options, visit this group at >>>> http://groups.google.com/group/chromium-extensions?hl=en. >>>> >>>> >>>> >>> >> >> >> -- >> Hrishikesh Kale >> > > -- Hrishikesh Kale -- You received this message because you are subscribed to the Google Groups "Chromium-extensions" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/chromium-extensions?hl=en.
