使用Firefox Addon阻止JS

时间:2012-02-29 22:13:57

标签: firefox-addon firefox-addon-sdk

我正在使用mozilla提供的addon-sdk开发一个小火狐插件。插件只能在一个特定的网站上工作,它需要阻止来自这个网站的js文件。我正在搜索如何阻止此类请求的几个小时。

希望有人知道答案

1 个答案:

答案 0 :(得分:1)

是的,你必须手工完成这项工作。 SDK在这里根本没有帮助你,但它有点可能。

这与你需要做的事情是一致的。请注意,这不是经过测试的,不会开箱即用,只是为了让您了解所涉及的组件以及在哪里可以找到更多资源。

const { Cc, Ci, Cm, components } = require("chrome");
Cu.import("resource://gre/modules/XPCOMUtils.jsm", this);
const CategoryManager = Cc["@mozilla.org/categorymanager;1"]
                                .getService(Ci.nsICategoryManager);

function PolicyComponent() { }  

PolicyComponent.prototype = {  
  desc:             "My nsIContentPolicy XPCOM Component",  
  classID:          components.ID("{3ffd2f60-3784-11e1-b86c-0800200c9a66}"),  
  contractID:       "@abc.def.com/policycomp;1",
  QueryInterface:   XPCOMUtils.generateQI([Ci.nsIContentPolicy]),

  shouldLoad: function(contentType, contentLocation, requestOrigin, aContext, mimeTypeGuess, extra) {
    if (contentLocation.spec != BLOCKED_JS) { return return Ci.nsIContentPolicy.ACCEPT; }
    else { return Ci.nsIContentPolicy.REJECT_REQUEST; }
  },
  shouldProcess: function() {
    return CI.nsIContentPolicy.ACCEPT;
  }
}

var pc = new PolicyComponent()

// Register the Interface
Cm.QueryInterface(Ci.nsIComponentRegistrar).registerFactory(pc.uuid, pc.desc, pc.contractID, pc);

// Add the content policy 
CategoryManager.addCategoryEntry("content-policy",pc.className,pc.contractID, true, true);  // not sure you should replace (last true statement)

有关详情,请参阅此帖子: What is missing in my nsIContentPolicy Firefox/IceWeasel extension XPCOMponent implementation for the shouldLoad to be called?

另请查看以下文档:https://developer.mozilla.org/en/XUL_School/Intercepting_Page_Loads#Content_Policy