(msg, type="success", options)
| 177 | } |
| 178 | |
| 179 | function showMessage(msg, type="success", options) { |
| 180 | // type: success[green] error[red] warning[orange] info[blue] |
| 181 | let option = { |
| 182 | text: msg, |
| 183 | type: type, |
| 184 | position: 'bottomLeft', |
| 185 | ...options |
| 186 | } |
| 187 | new NoticeJs(option).show(); |
| 188 | } |
| 189 | |
| 190 | function openPage(url, b=true) { |
| 191 | GM_openInTab(url, { |
no outgoing calls
no test coverage detected