Chrome Extensions

[Browser UI]contextMenus

건깡 2013. 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