(shortcut1, shortcut2)
| 2295 | } |
| 2296 | |
| 2297 | function checkKey(shortcut1, shortcut2) { |
| 2298 | return shortcut1.ctrlKey == shortcut2.ctrlKey && shortcut1.shiftKey == shortcut2.shiftKey && shortcut1.altKey == shortcut2.altKey && shortcut1.metaKey == shortcut2.metaKey && shortcut1.key == shortcut2.key; |
| 2299 | } |
| 2300 | |
| 2301 | function startCustom() { |
| 2302 | var customRules = GM_getValue("DACrules_" + document.domain); |
no outgoing calls
no test coverage detected