(tips)
| 385 | * @private |
| 386 | */ |
| 387 | let _animateTips = (tips) => { |
| 388 | setTimeout(() => { |
| 389 | chrome.action.setBadgeText({text: tips}); |
| 390 | setTimeout(() => { |
| 391 | chrome.action.setBadgeText({text: ''}); |
| 392 | }, 2000); |
| 393 | }, 3000); |
| 394 | }; |
| 395 | |
| 396 | /** |
| 397 | * 插件图标点击后的默认动作 |
no test coverage detected