5 |
5 |
6 """ |
6 """ |
7 Module implementing the Python side for GreaseMonkey scripts. |
7 Module implementing the Python side for GreaseMonkey scripts. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSlot, QObject, QSettings |
10 from PyQt6.QtCore import pyqtSlot, QObject, QSettings |
11 from PyQt5.QtGui import QGuiApplication |
11 from PyQt6.QtGui import QGuiApplication |
12 |
12 |
13 |
13 |
14 class GreaseMonkeyJsObject(QObject): |
14 class GreaseMonkeyJsObject(QObject): |
15 """ |
15 """ |
16 Class implementing the Python side for GreaseMonkey scripts. |
16 Class implementing the Python side for GreaseMonkey scripts. |