extension) tabs.getSelected VS tabs.query
tabs.getSelected 크롬 16 이후버전에서 공식적으로 제거된 기능입니다. 파이어폭스에서는 이용하실수 없습니다. 구버전기능이라고 보시면 됩니다. tabs.query //chrome chrome.tabs.query({ currentWindow: true, active: true }, function(tabs){ //code: ex) tabs[0].id }); //firefox browser.tabs.query({ currentWindow: true, active: true }, function(tabs){ //code: ex) tabs[0].id }); 크롬 16 에서 tabs.getSelected가 제거되고 생긴 기능 Parameters object queryInfo boolean (option..