Chrome拡張 contexMenuのcontexts調査【個人メモ】


chrome拡張のcontexMenuは以下の様に記述される


createID = chrome.contextMenus.create({
        "title": "add video info", 
        "type": "normal", 
        "contexts": ["link"], 
        "onclick": function(info) {
               .....
        }
    });

contextsの設定について調査実施