Per provare i componenti aggiuntivi disponibili in questo sito scarica Mozilla Firefox, un modo veloce e gratuito per navigare sul Web.
ChiudiBenvenuto in Firefox Add-ons.
Scegli tra migliaia di funzionalità aggiuntive e stili per rendere Firefox veramente tuo.
ChiudiRecensione di tbali per KDE Wallet password integration
Assegnate 5 su 5 stelle
I found the problem with firefox 24+. The api changed.
In the file ~/.mozilla/firefox/XXXXXXX.default/extensions/kwallet@guillermo.molina/components/KDEWalletStorage.js add the following lines:
get isLoggedIn() {
return true;
}
So it will look like this:
------------------
countLogins: function countLogins(hostname, submitURL, realm) {
this.log( "countLogins() Start" );
var count = this._lib.countLogins(hostname, submitURL, realm);
this.log( "countLogins() counted = " + count );
return count;
},
get isLoggedIn() {
return true;
}
};
const NSGetFactory = XPCOMUtils.generateNSGetFactory([KDEWalletStorage]);
------------------
Dear Guillermo Molina, please support is in the future too! Thanks for your work!
Per creare una tua raccolta devi avere un account per Mozilla Add-ons.