Index: background.js |
=================================================================== |
--- a/background.js |
+++ b/background.js |
@@ -87,17 +87,17 @@ |
modules.utils = { |
Utils: { |
getDocLink(link) |
{ |
return "https://adblockplus.org/redirect?link=" + encodeURIComponent(link); |
}, |
get appLocale() |
{ |
- return chrome.i18n.getUILanguage(); |
+ return browser.i18n.getUILanguage(); |
}, |
get readingDirection() |
{ |
return /^(?:ar|fa|he|ug|ur)\b/.test(this.appLocale) ? "rtl" : "ltr"; |
} |
} |
}; |