"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
'Study > Javascript' 카테고리의 다른 글
[Javascript] javascript에서 replaceAll 하기!! (0) | 2014.05.20 |
---|---|
[angularJS] 컨트롤러로 view 뿌리기 tutorial (0) | 2014.05.20 |
[JQuery][ajax] 기본 post 요청 구조 (0) | 2014.05.20 |
[JQuery] html 문서에서 다른 html 문서 import (1) | 2014.05.20 |
[angularJS] null 체크 간편하게 하기 (0) | 2014.05.20 |
[Javascript] 스크립트에서의 키보드 키코드 (0) | 2014.05.20 |
[JQuery] prototype 과의 충돌 문제 해결법 (0) | 2014.05.20 |
chrome.extension API, Script API (0) | 2013.06.24 |
JSON.parse, JSON.stringify (0) | 2013.06.24 |
Chrome Extension - CSS/JS 활용기초 (0) | 2013.06.13 |