制作一个manifest.json文件实现Chrome浏览器插件制作
时间: 2024-05-25 22:15:48 浏览: 105
Chrome插件开发
5星 · 资源好评率100%
{
"manifest_version": 2,
"name": "My Chrome Extension",
"version": "1.0",
"description": "This is my first Chrome extension",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"activeTab"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "My Chrome Extension",
"default_popup": "popup.html"
}
}
阅读全文