Forum Alerts

Get alerts from your favorite communities (powered by XenForo).

Wat is Forum Alerts?

Forum Alerts is een Chrome-extensie ontwikkeld door Daniel Hood, en de belangrijkste functie is "Get alerts from your favorite communities (powered by XenForo).".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Forum Alerts

Download Forum Alerts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Forum Alerts Forum Alerts
ID leiehnemnmkljaaahpadjodmghkhlhjj
Officiële URL https://chromewebstore.google.com/detail/forum-alerts/leiehnemnmkljaaahpadjodmghkhlhjj
Beschrijving Get alerts from your favorite communities (powered by XenForo).
Bestandsgrootte 40.62 KB
Aantal Installaties 192
Huidige Versie 1.0.2
Laatst Bijgewerkt 2013-10-28
Publicatiedatum 2013-10-28
Beoordeling 4.11/5 Totaal 19 Beoordelingen
Ontwikkelaar Daniel Hood
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}