[크롬 익스텐션] url 로 특정 탭 목록 가져와서 url 변경하기
1. 현재 떠 있는 탭 중에, 특정 url이 포함된 탭들을 가져온다. 2. 가져온 탭들을 새로운 url로 리로드 시킨다. (여기에 파라미터 전송 등 응용해서 사용 가능) manifest.json "permissions": [ "tabs", "scripting", "activeTab" ], "host_permissions": [ "https://*.google.com/*", "https://*.tistory.com/*" ] background.js let url = 'www.tistory.com' var count = 0; chrome.tabs.query({url: "https://www.google.com/*"}).then(function(res){ if(res.length > 0) { for(let i..