Chrome 확장 매니페스트 '일치' 간단한 Chrome Extension을 사용해 보려고 하는데, 이 기능을 위해 값을 제공하는 데 문제가 있습니다.matches내 안에 배열content_scripts. { "name": "My Extension", "version": "1.0", "description": "My Extension Experiment", "browser_action": { "default_icon": "icon.png", "default_title": "Ext", "default_popup": "popup.html" }, "content_scripts": { "matches": ["http://*"], "js": ["scripts.js"] } } 이 확장을 Chrome에 로드하려고 하..