Mon, 12 Feb 2018 19:04:07 +0100
Register QWebChannel on isolated ApplicationWorld
This way scripts on pages don't have access to it. Exceptions are eric: and qthelp: schemes as internal pages requires the bridge.
GreaseMonkey userscripts now runs on ApplicationWorld too. This fixes userscript that depend on script world being isolated from main page world.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>WebIconDialog</class> <widget class="QDialog" name="WebIconDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>550</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>Favicons</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0" rowspan="3"> <widget class="QListWidget" name="iconsList"> <property name="contextMenuPolicy"> <enum>Qt::CustomContextMenu</enum> </property> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="selectionMode"> <enum>QAbstractItemView::ExtendedSelection</enum> </property> <property name="iconSize"> <size> <width>22</width> <height>22</height> </size> </property> <property name="sortingEnabled"> <bool>true</bool> </property> </widget> </item> <item row="0" column="1"> <widget class="QPushButton" name="removeButton"> <property name="toolTip"> <string>Press to remove the selected entries</string> </property> <property name="text"> <string>&Remove</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QPushButton" name="removeAllButton"> <property name="toolTip"> <string>Press to remove all entries</string> </property> <property name="text"> <string>Remove &All</string> </property> </widget> </item> <item row="2" column="1"> <spacer name="verticalSpacer"> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>40</height> </size> </property> </spacer> </item> </layout> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>WebIconDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>228</x> <y>581</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>WebIconDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>296</x> <y>587</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>