Forum Alerts
Get alerts from your favorite communities (powered by XenForo).
Co to jest Forum Alerts?
Forum Alerts to rozszerzenie Chrome opracowane przez Daniel Hood, a jego główną funkcją jest „Get alerts from your favorite communities (powered by XenForo).”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Forum Alerts
Pobierz pliki rozszerzeń Forum Alerts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Forum Alerts |
ID | leiehnemnmkljaaahpadjodmghkhlhjj |
Oficjalny URL | https://chromewebstore.google.com/detail/forum-alerts/leiehnemnmkljaaahpadjodmghkhlhjj |
Opis | Get alerts from your favorite communities (powered by XenForo). |
Rozmiar pliku | 40.62 KB |
Liczba instalacji | 192 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2013-10-28 |
Data Publikacji | 2013-10-28 |
Ocena | 4.11/5 Łącznie 19 Oceny |
Deweloper | Daniel Hood |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |