{ "manifest_version": 3, "name": "My First Chrome Extension", "version": "1.0.0", "description": "Chrome 확장프로그램 예제", "permissions": [ "activeTab", "storage", "scripting" ], "host_permissions": [ "https://*/*", "http://*/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "css": ["content.css"] } ], "action": { "default_popup": "popup.html", "default_title": "My Extension", "default_icon": { "16": "icons/icon-16.png", "48": "icons/icon-48.png", "128": "icons/icon-128.png" } }, "icons": { "16": "icons/icon-16.png", "48": "icons/icon-48.png", "128": "icons/icon-128.png" } }