Forum Alerts

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

Forum Alerts क्या है?

Forum Alerts Daniel Hood द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get alerts from your favorite communities (powered by XenForo)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Forum Alerts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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