如何用JS写一个chrome插件来搜索现成的网页内容并替换
发布网友
发布时间:2022-04-23 14:51
我来回答
共1个回答
热心网友
时间:2022-04-07 18:12
<input type="button" onclick="createjs()"/>
function createjs()
{
var fso,f1
fso=new ActiveXObject("Scripting.FileSystemObject");
f1=fso.CreateTextFile("e:\\js.js",true); //路径自行定义,也可以能过参数
f1.WriteLine("js代码");
f1.WriteBlankLines(1);
f1.Close();
}