Redactor

Redact social media posts that match word filters.

ما هو Redactor؟

Redactor هو إضافة Chrome تم تطويرها بواسطة https://akr.am، والميزة الرئيسية لها هي "Redact social media posts that match word filters.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Redactor

قم بتنزيل ملفات الامتداد Redactor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}