如何从扩展程序中的iframe获取当前标签页的网址

时间:2018-07-17 17:55:31

标签: google-chrome-extension

我有一个扩展名将其包含在iframe内,我想获取当前选项卡的url,并在其中填充我的iframe中的一个字段。 该怎么办?

编辑

这是扩展名中的一部分代码:

    <html>
    <body>
        <div id="container">
            <iframe src="http://localhost:8888/portal/extension/" frameborder="0" width="500px" height="500px">
                <input type="text"/>
                <script src="my-script"></script>
            </iframe>
        </div>
        <script src="jquery-3.2.1.min.js"></script>
        <script src="popup.js"></script>
    </body>
</html>

0 个答案:

没有答案