Fanatic

按照关键字、通配符、正则表达式筛选饭否时间线消息, 并过滤或染色. 亦可通过高级配置实现 好友分组、Mute 等功能, 实现 Timeline 的个性化定制.

What is Fanatic?

Fanatic is a Chrome extension developed by 太空饭否开发组, and its main feature is "按照关键字、通配符、正则表达式筛选饭否时间线消息, 并过滤或染色. 亦可通过高级配置实现 好友分组、Mute 等功能, 实现 Timeline 的个性化定制.".

Extension Screenshots

screenshot

Download Fanatic Extension CRX File

Download Fanatic extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        # 主要功能 #
- 根据消息的各种特征进行匹配. 可供匹配的项目有: 用户昵称、用户 ID 、 客户端 、消息内容 、提到的用户昵称、提到的用户 ID、回复昵称、转发昵称等
- 通过高级配置可以实现 Mute、提到自己的消息高亮显示、 好友分组等功能
- 可以使用完全匹配 (普通匹配)、 关键字、通配符、正则表达式来匹配消息
- 可以对匹配的消息进行染色或过滤处理
- 可以添加任意多个筛选器, 自由搭配实现不同的效果
- 提供 36 种备选颜色, 也可以自行定制
- 可以使用隐藏、清除、折叠、保护等方法来过滤消息
- 提供多种匹配逻辑
- 可以导入/导出设置

作者: @锐风 https://fanfou.com/ruif 
GitHub 项目主页: https://github.com/riophae/Fanatic                    

Extension Basic Information

Name Fanatic Fanatic
ID nnfgpokjdjekoafapiikeklhjhbckjah
Official URL https://chromewebstore.google.com/detail/fanatic/nnfgpokjdjekoafapiikeklhjhbckjah
Description 按照关键字、通配符、正则表达式筛选饭否时间线消息, 并过滤或染色. 亦可通过高级配置实现 好友分组、Mute 等功能, 实现 Timeline 的个性化定制.
File Size 149 KB
Installation Count 1,420
Current Version 0.1.9
Last Updated 2019-11-26
Publish Date 2019-11-26
Rating 4.80/5 Total 5 Ratings
Developer 太空饭否开发组
Payment Type free
Extension Website https://github.com/riophae/Fanatic
Help Page URL http://fanfou.com/ruif
Supported Languages zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "common.js",
            "settings.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "content.css"
            ],
            "js": [
                "common.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/fanfou.com\/*",
                "https:\/\/fanfou.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "\u6309\u7167\u5173\u952e\u5b57\u3001\u901a\u914d\u7b26\u3001\u6b63\u5219\u8868\u8fbe\u5f0f\u7b5b\u9009\u996d\u5426\u65f6\u95f4\u7ebf\u6d88\u606f, \u5e76\u8fc7\u6ee4\u6216\u67d3\u8272. \u4ea6\u53ef\u901a\u8fc7\u9ad8\u7ea7\u914d\u7f6e\u5b9e\u73b0 \u597d\u53cb\u5206\u7ec4\u3001Mute \u7b49\u529f\u80fd, \u5b9e\u73b0 Timeline \u7684\u4e2a\u6027\u5316\u5b9a\u5236.",
    "icons": {
        "256": "icons\/icon-256.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "name": "Fanatic",
    "options_page": "options.html",
    "page_action": {
        "default_icon": "icons\/icon-19.png",
        "default_title": "Fanatic",
        "default_popup": "options.html"
    },
    "permissions": [
        "http:\/\/fanfou.com\/*",
        "https:\/\/fanfou.com\/*",
        "tabs"
    ],
    "version": "0.1.9",
    "manifest_version": 2
}