본문 바로가기

Study/Javascript

크롬 익스텐션 content_scripts 정의 (manifest.jason)

"content_scripts": [ {


"run_at" : "document_start",

//컨텐트 스크립트의 사용 시점을 정의 (문서가 시작될 때)


"all_frames" : true,

//불리언 타입으로써 매칭되는 모든 프레임에 실행이 될 것인지, 맨 상위의 페이지에서만 실행할 것인지 선택


"js": ["/lib/jquery/jquery.js",

...

],

//사용될 스크립트


"matches": [ "http://*/*", "https://*/*"]

//어떤 페이지에 매칭될 것인지 (해당 속성은 모든 페이지에 사용





참조 사이트

https://developer.chrome.com/extensions/content_scripts.html