(markInfo)
| 37 | } |
| 38 | |
| 39 | function saveMark(markInfo) { |
| 40 | const item = {}; |
| 41 | item[getLocationKey(markInfo.markName)] = markInfo; |
| 42 | chrome.storage.local.set(item); |
| 43 | } |
| 44 | |
| 45 | // Goto a global mark. We try to find the original tab. If we can't find that, then we try to find |
| 46 | // another tab with the original URL, and use that. And if we can't find such an existing tab, then |
no test coverage detected