dns-killer/background.js

13 lines
314 B
JavaScript
Raw Normal View History

2018-07-07 21:05:26 +08:00
/**
*
* @authors yutent (yutent@doui.cc)
* @date 2018-07-07 20:59:35
* @version $Id$
*/
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.benchmarking.clearHostResolverCache()
chrome.benchmarking.closeConnections()
chrome.tabs.executeScript(tab.id, { code: 'location.reload()' })
})