Netflix profanity filter

By Frederik de Vree

Τι είναι το Netflix profanity filter;

Το Netflix profanity filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον frederikdevree, και η κύρια λειτουργία του είναι "By Frederik de Vree".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Netflix profanity filter

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

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

                        This extension filters profanity words in Netflix. It both censors the subtitles and mutes the audio on the appropriate sentence. With customizable profanity word list.

To use this, subtitles in Netflix need to be turned on. Because the filtering is based on the subtitles, make sure you add profanity words to the list in the language of the subtitles.                    

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

Όνομα Netflix profanity filter Netflix profanity filter
ID maljbdebgffplibkcchbjahfjhppkpmp
Επίσημο URL https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp
Περιγραφή By Frederik de Vree
Μέγεθος Αρχείου 71.38 KB
Αριθμός Εγκαταστάσεων 5,613
Τρέχουσα Έκδοση 2.2.2
Τελευταία Ενημέρωση 2015-12-31
Ημερομηνία Δημοσίευσης 2015-12-31
Αξιολόγηση 3.17/5 Συνολικά 71 Αξιολογήσεις
Προγραμματιστής frederikdevree
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix profanity filter",
    "version": "2.2.2",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "By Frederik de Vree",
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.4.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ]
}