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).”。
扩展截图
下载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 |
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" } ] } |