Redactor

Redact social media posts that match word filters.

Redactor là gì?

Redactor là một tiện ích mở rộng Chrome được phát triển bởi https://akr.am, và tính năng chính của nó là "Redact social media posts that match word filters.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Redactor

Tải xuống các tệp mở rộng Redactor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Redactor Redactor
ID niopomnhlbbadedejhkpmioegnhpbche
URL Chính Thức https://chromewebstore.google.com/detail/redactor/niopomnhlbbadedejhkpmioegnhpbche
Mô tả Redact social media posts that match word filters.
Kích Thước Tệp 16.69 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-08-09
Ngày Phát Hành 2019-09-22
Nhà Phát Triển https://akr.am
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/mohd-akram/redactor/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}