Chrome extension 的manifest.json 文件说明
字段摘要
以下字段为manifest.json的字段,其中name 和 version是必须的
<div style="padding: 12.0pt 12.0pt 12.0pt 12.0pt;">{
// Required
"name": "My Extension",
"version": "versionString",
// Recommended
"description": "A plain textdescription",
"icons": { ... },
"default_locale": "en",
// Pick one (ornone)
"browser_action": {...},
"page_action": {...},
"theme": {...},
// Add any of thesethat you need
"background_page": "aFile.html",
"chrome_url_overrides": {...},
"content_scripts": [...],
"key": "publicKey",
"minimum_chrome_version": "versionString",
"options_page": "aFile.html",
"permissions": [...],
"plugins": [...],
"update_url": "http://path/to/updateInfo.xml"
"incognito": "split or spanning",
}
页:
[1]