刚刚向我的应用程序添加了共享扩展。它在 safari 中运行良好。从 Chrome 启动它时,不会调用“ExtensionPreprocessingJS.js”。因此,未调用以下代码:
MyExtensionJavaScriptClass.prototype = {
run: function(arguments) {
// Pass the baseURI of the webpage to the extension.
arguments.completionFunction({"baseURI": document.baseURI});
},
请指教。