我正在尝试使用Windows命令行(或powershell)打开保存在chrome中的书签。 书签不是URL,而是我用来在目标网站上自动执行某些任务的javascript。 我可以使用命令行触发整个事件(chrome启动+书签打开)吗? 或者我可以用来安排此任务的任何其他方法。
答案 0 :(得分:1)
您的书签如何定义?它有点不清楚,比较Create Bookmarklets - The Right Way
在下一个示例中,.js
和.html
文件存储在本地,两者都在同一文件夹中。但是,可以存储在任何地方,比较HTML <script>
src
Attribute:
语法:
<script src="URL">
可能的网址属性值:
- 绝对网址 - 指向其他网站(如
src="http://www.example.com/example.js"
)- 相对网址 - 指向网站内的文件(如
src="/scripts/example.js"
)
文件:dir /B /S 40460552.*
d:\bat\SO\40460552.html
d:\bat\SO\40460552.js
Javasript :type "D:\bat\SO\40460552.js"
// JavaScript Document
document.write("Text from script");
alert( "script done" );
HTML :type "D:\bat\SO\40460552.html"
<!DOCTYPE html>
<html>
<body>
<p>Text from page before script</p>
<script src="40460552.js"></script>
<p>Text from page after script</p>
</body>
</html>
cmd :使用START
command
start "" chrome --allow-running-insecure-content "D:\bat\SO\40460552.html"