Reddit FRANK Detector

Detects Reddit FRANKS (Fresh Reddit Account, No Karma)

什么是Reddit FRANK Detector?

Reddit FRANK Detector是由impossible开发的Chrome扩展程序,该扩展的主要功能是“Detects Reddit FRANKS (Fresh Reddit Account, No Karma)”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Reddit FRANK Detector扩展crx文件

下载Reddit FRANK Detector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        F.R.A.N.K. - Fresh Reddit Account, No Karma

This extension checks Reddit comment authors for low/negative karma and new accounts. It then flags any offending comments. To put it simply, this extension makes Reddit trolls more obvious.

This is not the world's most sophisticated troll detector but it will quickly identify the most obvious offenders. You will be surprised how many obvious trolls are hiding in virtually every thread.                    

扩展基本信息

名称 Reddit FRANK Detector Reddit FRANK Detector
ID cdlniegonhfdpmbfkchckkdnbfjjejha
官方URL https://chromewebstore.google.com/detail/reddit-frank-detector/cdlniegonhfdpmbfkchckkdnbfjjejha
简介 Detects Reddit FRANKS (Fresh Reddit Account, No Karma)
文件大小 48.7 KB
安装次数 109
当前版本 0.7
更新时间 2018-03-17
上架时间 2018-03-17
评分 3.00/5 共2次评分
开发者 impossible
付费类型 free
扩展官网 https://www.reddit.com/user/feeling_impossible/
帮助页面URL https://www.reddit.com/user/feeling_impossible/
隐私政策页面URL https://docs.google.com/document/d/e/2PACX-1vRJ8JaPrbZKiVU6LqQsby6O81Pf7QXoP11pkZPKdyduROpE7BMHrm6U7pNBdfxRgBfJMCRS5K8VJv1d/pub
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit FRANK Detector",
    "short_name": "FRANK Finder",
    "description": "Detects Reddit FRANKS (Fresh Reddit Account, No Karma)",
    "version": "0.7",
    "author": "impossible",
    "browser_action": {
        "default_popup": "rfd.html",
        "default_icon": "rfd16.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "run_at": "document_idle",
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "settings.js",
                "rfd.js"
            ],
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "rfd16.png",
        "48": "rfd48.png",
        "128": "rfd128.png"
    }
}