()
| 867 | // 记录最近一次选中的文字,供右键脚本菜单 [添加选中文字到屏蔽词] 使用 |
| 868 | function rememberSelectedBlockKeyword() { |
| 869 | const updateSelectedBlockKeyword = function() { |
| 870 | selectedTextForBlockKeywords = getSelectedBlockKeywordText(); |
| 871 | } |
| 872 | document.addEventListener('selectionchange', updateSelectedBlockKeyword); |
| 873 | document.addEventListener('contextmenu', updateSelectedBlockKeyword, true); |
| 874 | window.addEventListener('urlchange', function(){selectedTextForBlockKeywords = '';}); |
nothing calls this directly
no test coverage detected