Chrome Extensions2013. 5. 10. 18:16

구글 크롬의 컨텍스트 메뉴에 항목을 추가하는 모듈.

권한 : "contextMenus"



Manifest

{
  "name": "Context Menus Sample",
  "description": "Shows some of the features of the Context Menus API",
  "version": "1",
  "permissions": ["contextMenus"],
  "icons": {
	"16": "application.png"			// 컨텍스트메뉴 아이콘
  },
  "background": {
    "scripts": ["sample.js"]
  },
  "manifest_version": 2
}


chrome.contextMenus reference


'Chrome Extensions' 카테고리의 다른 글

[Browser UI]chrome.omnibox  (0) 2013.05.10
[Browser UI]Desktop Notifications  (0) 2013.05.10
[Browser UI]browserAction  (0) 2013.05.09
manifest.json  (0) 2013.05.09
구글크롬 확장 프로그램 - Getting Started  (2) 2013.05.06
Posted by 건깡