如何在Chrome扩展程序JavaScript代码中阅读清单JSON中的内容?

时间:2013-10-03 11:45:02

标签: google-chrome-extension

是否可以在扩展上下文中获取manifest.json的内容?例如,在我的background.js中,我想在manifest.json文件中获取“content_scripts”的内容。类似的东西:

chrome.manifestJson.content_scripts

1 个答案:

答案 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);