Netflix profanity filter
By Frederik de Vree
Vad är Netflix profanity filter?
Netflix profanity filter är en Chrome-tillägg utvecklad av frederikdevree, och dess huvudfunktion är "By Frederik de Vree".
Tilläggsskärmbilder
Ladda ner Netflix profanity filter-förlängningens CRX-fil
Ladda ner Netflix profanity filter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Netflix profanity filter |
ID | maljbdebgffplibkcchbjahfjhppkpmp |
Officiell webbadress | https://chromewebstore.google.com/detail/netflix-profanity-filter/maljbdebgffplibkcchbjahfjhppkpmp |
Beskrivning | By Frederik de Vree |
Filstorlek | 71.38 KB |
Antal Installationer | 5,613 |
Aktuell Version | 2.2.2 |
Senast Uppdaterad | 2015-12-31 |
Publiceringsdatum | 2015-12-31 |
Betyg | 3.17/5 Totalt 71 Betyg |
Utvecklare | frederikdevree |
Betalningssätt | free |
Stödda Språk | 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" } ] } |