chrome.extension.getBackgroundPage()
- bp 객체를 통해서 백그라운드의 있는 함수 등을 호출할 수 있다.
- chrome.extension.getBackgroundPage().funtion_name();
window.localStorage.setItem();
- localStorage 는 로컬에 저장하는 방식으로, 브라우저를 끄더라도 데이터가 저장되어있다.
- 그에 반해 sessionStorage 는 브라우저를 끄면 저장된 데이터는 사라진다.
- localStorage는 setItem, getItem, removeItem, clear 기본삽입, 출력, 삭제, 모두 삭제 기능을 지원한다.
- 자세한 것은 웹 스토리지 API 참조
- 참조 블로그 : http://ohgyun.com/417
- http://www.nczonline.net/blog/2009/07/21/introduction-to-sessionstorage/
추후 내용 추가 예정
'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 |
JSON.parse, JSON.stringify (0) | 2013.06.24 |
크롬 익스텐션 content_scripts 정의 (manifest.jason) (0) | 2013.06.18 |
Chrome Extension - CSS/JS 활용기초 (0) | 2013.06.13 |