tbali

关于我

开发者信息
名称 tbali
注册时间 Nov. 26, 2013
开发的附加组件数量 0 个附加组件
开发的附加组件平均得分 尚无评分

我所发表的评价

KDE Wallet password integration

评分5星,满分5星

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!

这个评论是针对附加组件的一个早期版本的(2.1.1-signed.1-signed)。