diff --git a/chrome_point_plus/js/point-plus.js b/chrome_point_plus/js/point-plus.js index b610fd5..220ef97 100644 --- a/chrome_point_plus/js/point-plus.js +++ b/chrome_point_plus/js/point-plus.js @@ -1120,7 +1120,6 @@ function hints_draw_main_user_hint(items) { // Превращаем сырой текст в нормальный, обёрнутый в p function hints_raw_text_to_html(text) { - // @todo проверить как работает text = text .replace('&', "&") .replace('<', "<") @@ -1139,7 +1138,7 @@ function hints_set_titles_on_users(items) { return; } - var n = href.match(new RegExp('^https?\\://([0-9a-z-]+)\\.point\\.im/$')); + var n = href.match(new RegExp('^https?\\://([0-9a-z-]+)\\.point\\.im/$', 'i')); if (n == null) { return; } diff --git a/chrome_point_plus/manifest.json b/chrome_point_plus/manifest.json index bda5e8d..31a06c3 100644 --- a/chrome_point_plus/manifest.json +++ b/chrome_point_plus/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Point+", - "version": "1.18.0", + "version": "1.18.1", "default_locale": "ru", "author": "__MSG_ext_author__", "homepage_url": "https://bitbucket.org/skobkin/chrome_point_plus",