Ferdiのエラー対処法 Grrr! A pop-up blocker may be preventing the application fro opening the page. If you have a pop-up blocker, try disabling it to open the window.

Diary

Grrr! A pop-up blocker may be preventing the application fro opening the page. If you have a pop-up blocker, try disabling it to open the window.

っていうエラーがでました。対処法は、全然関係ないけど設定ファイル内にある、ブラウザのuser agent偽装の値を変えること。

~/Library/Application Support/Ferdi/recipes/gmail/index.js を開いて、9行目当たりの値を変更します。

結果はこちら。

var os = require('os')
module.exports = Franz =>
class Gmail extends Franz {
overrideUserAgent() {
if (os.platform() == 'linux')
return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0"
else
return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36";
}
};
view raw index.js hosted with ❤ by GitHub

その後、Ferdiを再起動すると直ります。

1年近く前から存在する不具合みたい。。。

https://github.com/getferdi/ferdi/issues/321

コメント