Redactor

Redact social media posts that match word filters.

Redactor क्या है?

Redactor https://akr.am द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redact social media posts that match word filters."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Redactor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}