右記のエラーの解消法が、いつのまにか、載っていた。 Thunderbird main window: “ReferenceError: statusline is not defined” · Issue #752 · vimperator/vimperator-labs · GitHub
git clone https://github.com/vimperator/vimperator-labs.git cd vimperator-labs vim common/content/statusline.js cd muttator/ make xpi
common/content/statusline.js を以下のように編集して、make xpi
。すると、../downloads/muttator-1.4.xpi
が作成される。
diff --git a/common/content/statusline.js b/common/content/statusline.js
index 71ee0fd..6ba238a 100644
--- a/common/content/statusline.js
+++ b/common/content/statusline.js
@@ -77,7 +77,7 @@ const StatusLine = Module("statusline", {
// In case of insecure login forms, connection icon is updated after page load.
const VERSION = Services.appinfo.platformVersion;
if (services.get("vc").compare(VERSION, "51") >= 0) {
- gBrowser.addEventListener("InsecureLoginFormsStateChange",
+ config.browser.addEventListener("InsecureLoginFormsStateChange",
function () {
statusline.updateField('ssl', null);
});
をアドオンマネージャー -> ファイルからアドオンをインストール を選択して、 muttator-1.4.xpiを選択してインストールする。
hintモード復活