Redact The Web

Extension that redacts text on the web

Τι είναι το Redact The Web;

Το Redact The Web είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον deadcoder0904, και η κύρια λειτουργία του είναι "Extension that redacts text on the web".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Redact The Web

Λήψη αρχείων επέκτασης Redact The Web σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension allows you to redact the text on the web.

It works on every website.

The code is completely open-source and can be found on Github → https://github.com/deadcoder0904/redact-the-web

**Changelog**

v1.0.1 - Bundled font with the extension & now supports Cyrillic (Russians and Ukrainians) symbols 

v1.0.0 - Initial Release                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Redact The Web Redact The Web
ID hbinnehbfknmojoelfipldnpcekbmbce
Επίσημο URL https://chromewebstore.google.com/detail/redact-the-web/hbinnehbfknmojoelfipldnpcekbmbce
Περιγραφή Extension that redacts text on the web
Μέγεθος Αρχείου 18.22 KB
Αριθμός Εγκαταστάσεων 107
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2019-10-05
Ημερομηνία Δημοσίευσης 2019-10-04
Προγραμματιστής deadcoder0904
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/deadcoder0904/redact-the-web
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redact The Web",
    "offline_enabled": true,
    "version": "1.0.1",
    "description": "Extension that redacts text on the web",
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "style.css",
        "Redacted-Regular.ttf"
    ],
    "permissions": [
        "activeTab"
    ]
}