Forum Alerts

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

什麼是Forum Alerts?

Forum Alerts是由Daniel Hood開發的Chrome擴展程式,該擴展的主要功能是“Get alerts from your favorite communities (powered by XenForo).”。

擴展截圖

screenshot

下載Forum Alerts擴展crx文件

下載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 Forum Alerts
ID leiehnemnmkljaaahpadjodmghkhlhjj
官方網址 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"
        }
    ]
}