0

我正在学习制作我的第一个 google chrome 扩展程序。有一个网站有一个名为 songPath 的变量。I want to create a new button on the screen that when selected will download the url string inside songPath, instead of just opening it and playing it in the browser.

<div class="player">
    <script type="text/javascript">
    var songPath = "http://songurl.mp3";
    </script>
</div>

任何人都可以向我指出一些执行类似操作的脚本代码或示例。谢谢!

4

1 回答 1

1

Chrome 的“内容脚本”可以访问 DOM,但不能访问页面上的 JavaScript 环境。但是你可以通过注入一个引用你的脚本的脚本标签来做到这一点。

这里有一些很好的例子:https ://stackoverflow.com/a/9517879/989516

于 2013-03-26T13:49:15.880 回答