Netflix profanity filter
By Frederik de Vree
Apa itu Netflix profanity filter?
Netflix profanity filter adalah ekstensi Chrome yang dikembangkan oleh frederikdevree, dan fitur utamanya adalah "By Frederik de Vree".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Netflix profanity filter
Unduh file ekstensi Netflix profanity filter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Netflix profanity filter |
ID | maljbdebgffplibkcchbjahfjhppkpmp |
URL Resmi | https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp |
Deskripsi | By Frederik de Vree |
Ukuran File | 71.38 KB |
Jumlah Instalasi | 5,613 |
Versi Saat Ini | 2.2.2 |
Terakhir Diperbarui | 2015-12-31 |
Tanggal Publikasi | 2015-12-31 |
Penilaian | 3.17/5 Total 71 Penilaian |
Pengembang | frederikdevree |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } ] } |