(url)
| 15 | contentScript: { |
| 16 | onDocumentStart_: (details) => { |
| 17 | function isImgUrl(url) { |
| 18 | return url.match(/\.(jpeg|jpg|gif|png)$/) != null; |
| 19 | } |
| 20 | |
| 21 | const id = "show-image-on-hover-link"; |
| 22 | let div = document.createElement("div"); |
no outgoing calls
no test coverage detected