(label, action)
| 687 | } |
| 688 | let registeredMenuCommands = {} |
| 689 | function registerMenuCommand(label, action) { |
| 690 | const menuCommandId = GM_registerMenuCommand(label, action) |
| 691 | registeredMenuCommands[label] = menuCommandId |
| 692 | return menuCommandId |
| 693 | } |
| 694 | function saveWindowConfig(width, height, left, top, HostName = window.location.hostname) { |
| 695 | config.windowWidth = width |
| 696 | config.windowHeight = height |
no outgoing calls
no test coverage detected