gpt4 book ai didi

javascript - 来自 popup.js 的 Chrome 扩展程序 : Access to variables of a background. js

转载 作者:数据小太阳 更新时间:2023-10-29 04:06:20 24 4
gpt4 key购买 nike

如果我使用 chrome.extension.getBackgroundPage() ,我可以像这样访问 background.js 的变量:

背景.js:

var transfer = 'some text';

弹出.js:

chrome.extension.getBackgroundPage().transfer

但是this说我只得到一个窗口对象(但也许“窗口”之前的“JavaScript”意味着什么......)。如何访问后台变量?

最佳答案

是的,窗口前的“javascript”一词确实意味着它返回 javascript 文件(页面)background.js

为了便于访问我的 popup.js 文件的顶部,我这样做了:

var background = chrome.extension.getBackgroundPage(); //do this in global scope for popup.js

然后你可以这样做:

background.transfer;

由于您通常需要经常访问您的后台页面,这只会让周围的生活更轻松。

关于javascript - 来自 popup.js 的 Chrome 扩展程序 : Access to variables of a background. js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15572595/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com