是否可以在扩展上下文中获取manifest.json的内容?例如,在我的background.js中,我想在manifest.json文件中获取“content_scripts”的内容。类似的东西:
chrome.manifestJson.content_scripts
答案 0 :(得分:2)
来自chrome.runtime.getManifest API:
The object returned is a serialization of the full manifest file.
要访问manifest.json文件中content_scripts
的内容,您可以写:
var manifest = chrome.runtime.getManifest();
console.log(manifest.content_scripts);