Advanced Profanity Filter

Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.

Qu'est-ce que Advanced Profanity Filter ?

Advanced Profanity Filter est une extension Chrome développée par https://frostco.dev, et sa fonction principale est "Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Advanced Profanity Filter

Téléchargez les fichiers d'extension Advanced Profanity Filter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Whether you choose to censor, substitute, or hide offensive words, APF is here to improve your browsing experience. Individuals around the world can now be protected from profanity in their homes, organizations, and schools. APF has a variety of options to meet your personal needs.

APF is not limited to filtering text alone! With the use of captions and subtitles it can also mute audio while you sit back and relax to watch your favorite movies and shows from a collection of supported sites. Have a suggestion for a new supported site? Contact us!

For a detailed overview of the features and settings, please see the Getting Started page here:

https://github.com/richardfrost/AdvancedProfanityFilter/wiki

Thank you for supporting the ongoing development of this project.                    

Informations de Base sur l'Extension

Nom Advanced Profanity Filter Advanced Profanity Filter
ID piajkpdbaniagacofgklljacgjhefjeh
URL Officiel https://chromewebstore.google.com/detail/advanced-profanity-filter/piajkpdbaniagacofgklljacgjhefjeh
Description Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.
Taille du Fichier 540 KB
Nombre d'Installations 14,941
Version Actuelle 3.3.3
Dernière Mise à Jour 2024-02-14
Date de Publication 2020-07-02
Évaluation 4.52/5 Total 169 Évaluations
Développeur https://frostco.dev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/FrostCo/AdvancedProfanityFilter
URL de la Page d'Aide https://github.com/FrostCo/AdvancedProfanityFilter/issues
URL de la Page de Politique de Confidentialité https://github.com/FrostCo/AdvancedProfanityFilter/blob/main/PRIVACY.md
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Advanced Profanity Filter",
    "short_name": "APF",
    "author": "FrostCo",
    "manifest_version": 3,
    "version": "3.3.3",
    "description": "Advanced Profanity Filter helps to clean up bad language on the websites you and your family visit.",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "contextMenus",
        "notifications",
        "scripting",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "webFilter.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "options_ui": {
        "open_in_tab": true,
        "page": "optionPage.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Advanced Profanity Filter",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/*.crunchyroll.com\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "audio\/*.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "storage": {
        "managed_schema": "schema.json"
    }
}