0
votes
0answers
5 views
Access tab loading image using jetpack
Is it possible to access and trigger the tab loading image within a Firefox tab using jetpack? I want to create a jetpack that will trigger the tab loading image when it is perform …
0
votes
2answers
106 views
Why does this XUL code works and the Javascript equivalent doesn’t?
xul way:
<toolbar id="PersonalToolbar">
<toolbarbutton
id="Testing-Doit-Button2"
class="bookmark-item pagerank"
tooltiptext="Do it!"
oncommand="testing …
1
vote
0answers
39 views
getElementById(”bookmarksBarContent”).appendChild(button) is interpreted as getElementById(”PersonalToolbar”).appendChild(button)
"At the moment you can't overlay an element without an ID, so you need to use DOM methods to tweak the element you need in a load handler." - Xul Overlays
I'm trying! For record:
…
0
votes
1answer
75 views
window.openDialog does not remove the titlebar on linux
I use the following code to display a popup:
var win = window.openDialog("chrome://broceliand/content/view/popup/nameMapPopup.xul",
"",
"all=no," +
" …
0
votes
5answers
107 views
I add 10 functions to a code, I don’t even call any of them, but the code stops working!
Alone, this code works:
CustomButton = {
1: function () {
alert("Just testing")
},
}
I add the code below and the code above stops working:
function getvisitingnow() {
…
0
votes
0answers
27 views
Duplicate event listeners when multiple windows are open (Firefox extension)
My firefox extension calls an observer function on load that intercepts http requests (http-on-modify-request) from certain domains and opens them in a new tab.
The issue I'm havi …
0
votes
0answers
25 views
CSS pointer-events=’none’ and/or XUL mousethrough=’always’ in web pages for Firefox
Morning all.
Very recently I asked this question on how to pass clicks through an element (e.g. full screen overlaying ). Received some good advice, but I still wondered which bro …
1
vote
2answers
45 views
How are firefox notifications implemented?
Hi!
I would like to implement a notification mechanism in a firefox extension equal to firefox's "save password" option or popup blocking warning with the yellow bar sliding in ab …
0
votes
2answers
35 views
Javascript or XUL windows WITHOUT iframe
Hello everyone,
I am trying to build a multi-window website for my bookmarks, but I have some problems.
Here is the js version of what I am trying to build:
http://www.students.i …
1
vote
3answers
62 views
open links in new tab in firefox
HI,
I am developing an firefox extension. I want all the links on a webpage to be opened in a new tab? Can some one help me with this.
cheers
1
vote
3answers
119 views
How to achieve flow layout in XUL?
I'm creating a UI using XUL. I have N buttons I would like to add, and all I care about is that they all show on the form, regardless of the form's size. If I add a new button late …
2
votes
3answers
273 views
Can I have an XUL panel without a shadow in my Firefox extension?
XUL panels in a Firefox extension overlay always come with a shadow for free. How can I remove this shadow?
Example code for the shadow effect I don't want:
<popupset>
…
-1
votes
0answers
27 views
making a firefox extension read a cookie
here is what i have so far but i need to add a way for it to read a cookie from the page now also.
cell.innerHTML = "<a href='myaccount_trust.php?t_serv=" + t_serv + "&t_ch …
1
vote
2answers
24 views
Developing Client in XUL
We have a client server application for restaurants, both developed on the Java platform. The Client and Server exchange proprietary messages (something similar to REST).
Can I re …
1
vote
1answer
18 views
How to put XML element’s content into XUL template?
Hi,
I've gotten trouble with passing XML data into XUL template.
Look:
For example, we have the datasource XML with the next structure:
<people>
<person name="Joe"/> …
