日期:2014-05-16  浏览次数:20455 次

Chrome extension 的manifest.json 文件说明

字段摘要

以下字段为manifest.json的字段,其中name??version?是必须的

{

??// Required

??"name": "My Extension",

? "version": "versionString",

??// Recommended

? "description": "A plain text description",

? "icons": { ... },

? "default_locale": "en",

??// Pick one (or none)

? "browser_action": {...},

? "page_action": {...},

? "theme": {...},

??// Add any of these that you need

? "background_page": "aFile.html",

? "chrome_url_overrides": {...},

? "content_scripts": [...],

? "key": "publicKey",

? "minimum_chrome_version": "versionString",

? "