当我为twitter.com
域中的页面创建页面工作者时,没有任何反应。
lib/main.js
:
var pw = require("sdk/page-worker");
pw.Page({
contentScript: "console.log(window.location.href)",
contentURL: "https://google.com"
});
pw.Page({
contentScript: "console.log(window.location.href)",
contentURL: "https://twitter.com"
});
控制台输出如下:
console.log: twitter-worker: https://www.google.com/
总而言之,伙计们。我还没有获得一个内容脚本来运行任何使用任何Twitter URL的页面工作者contentURL
。这是让我们使用Twitter的API的一种技巧吗?