English 中文(简体)
如何在烟火等烟火环境中编造 j法的火法氧化法
原标题:How to code firefox extension which run javascript code in the page s context like firebug does

我知道,出于安全原因,这并不容易实现,但是,如果火烧确实发生,就会有办法这样做。

请帮助,在本页的行文中引用一些文字,以取得某种效果。

Basically, I would like to achieve two functionality: 1. add jQuery to any web page automatically if not already exist. 2. when open certain address, call a method of that page to auto notify the server. (an ajax functionality of the page)

I have tried to inject on the body, no luck. tried to get the window object, which however do not have access to call the function.

试图将地点改变为:javascript:alert(试验注射);

许多.。

最佳回答

在阅读了某些正式文件和Grease Monkey的消息来源之后,我获得了基本上为我工作的以下方法。

希望能节省时间:

var appcontent = document.getElementById("appcontent");   // browser  
    if (appcontent) {
         appcontent.addEventListener("DOMContentLoaded", function (evnt) {
            var doc = evnt.originalTarget; 
            var win = doc.defaultView;
            var unsafeWin = win.wrappedJSObject;

            // vote.up is the function on the page s context
            // which is take from this site as example
            unsafeWin.vote.up(...);
         }, true);
    }
}
问题回答

Greasemonkey。 如果你正在开发自己的延伸功能,你可以使用Components.utils.evalInSand Box





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签