如何检测chrome扩展中的网页刷新

时间:2018-06-18 10:07:11

标签: javascript google-chrome-extension

在Chrome扩展程序中 - 在特定选项卡上刷新页面时,chrome.tabs没有任何直接事件要触发。 我们确实有一个onUpdated事件,它将所有更改作为参数传递给自上次更新时发生的回调。

points = np.array([ ...: [0,0,0,0], ...: [1,1,1,1], ...: [3,3,3,3], ...: [6,6,6,6] ...: ]) In [106]: distance = np.tril(scipy.spatial.distance.cdist(points, points)) In [107]: distance Out[107]: array([[ 0., 0., 0., 0.], [ 2., 0., 0., 0.], [ 6., 4., 0., 0.], [12., 10., 6., 0.]]) In [108]: make_them_touch(distance) Out[108]: {2.0: [(1, 0)], 4.0: [(2, 1)], 6.0: [(2, 0), (3, 2)], 10.0: [(3, 1)], 12.0: [(3, 0)]}

0 个答案:

没有答案