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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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