mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-17 09:24:28 -05:00
Allow manual editing of browser extension connection keys
This commit is contained in:
parent
d5de042529
commit
287e822e02
9 changed files with 122 additions and 1 deletions
|
|
@ -187,6 +187,18 @@ QString BrowserSettings::proxyLocation()
|
|||
return m_nativeMessageInstaller.getProxyPath();
|
||||
}
|
||||
|
||||
#ifdef QT_DEBUG
|
||||
QString BrowserSettings::customExtensionId()
|
||||
{
|
||||
return config()->get(Config::Browser_CustomExtensionId).toString();
|
||||
}
|
||||
|
||||
void BrowserSettings::setCustomExtensionId(const QString& id)
|
||||
{
|
||||
config()->set(Config::Browser_CustomExtensionId, id);
|
||||
}
|
||||
#endif
|
||||
|
||||
bool BrowserSettings::updateBinaryPath()
|
||||
{
|
||||
return config()->get(Config::Browser_UpdateBinaryPath).toBool();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue