Redactor

Redact social media posts that match word filters.

Redactor란 무엇입니까?

Redactor은(는) https://akr.am에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redact social media posts that match word filters."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Redactor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Redactor lets you black out posts on Twitter, Reddit and Hacker News that match custom word filters. You can hover over redacted text to view it if you wish. To configure the word filters, go to the add-on's Options page. Words are case-sensitive and only match post text, not usernames.                    

확장 프로그램 기본 정보

이름 Redactor Redactor
ID niopomnhlbbadedejhkpmioegnhpbche
공식 URL https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche
설명 Redact social media posts that match word filters.
파일 크기 16.69 KB
설치 횟수 73
현재 버전 1.1.0
최근 업데이트 2023-08-09
출시 날짜 2019-09-22
개발자 https://akr.am
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/mohd-akram/redactor/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redactor",
    "version": "1.1.0",
    "description": "Redact social media posts that match word filters.",
    "icons": {
        "256": "icon.png"
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.reddit.com\/*",
                "*:\/\/*.news.ycombinator.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "main.js"
            ]
        }
    ]
}