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" } ] } |