Forum Alerts
Get alerts from your favorite communities (powered by XenForo).
Что такое Forum Alerts?
Forum Alerts - это расширение Chrome, разработанное Daniel Hood, и его основная функция - "Get alerts from your favorite communities (powered by XenForo).".
Снимки экрана расширения
Скачать файл CRX расширения Forum Alerts
Скачайте файлы расширений Forum Alerts в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows you to be notified when you get a new alert or personal conversation on any XenForo site that you visit while logged in. It does not require your username, email, or password for the site. The only data is uses is the page content. Every few minutes it checks each of the sites it picked up as using XenForo software for new alerts.
Основная информация о расширении
Название | Forum Alerts |
ID | leiehnemnmkljaaahpadjodmghkhlhjj |
Официальный URL | https://chromewebstore.google.com/detail/forum-alerts/leiehnemnmkljaaahpadjodmghkhlhjj |
Описание | Get alerts from your favorite communities (powered by XenForo). |
Размер файла | 40.62 KB |
Количество установок | 192 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2013-10-28 |
Дата публикации | 2013-10-28 |
Рейтинг | 4.11/5 Всего 19 оценок |
Разработчик | Daniel Hood |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Forum Alerts", "version": "1.0.2", "permissions": [ "http:\/\/*\/", "https:\/\/*\/", "activeTab", "tabs", "storage", "alarms", "notifications" ], "description": "Get alerts from your favorite communities (powered by XenForo).", "background": { "scripts": [ "jquery.min.js", "alerts.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ] } |