Censor Me

Censor the internet by blocking certain words!

Vad är Censor Me?

Censor Me är en Chrome-tillägg utvecklad av mehulpillaidev25, och dess huvudfunktion är "Censor the internet by blocking certain words!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Censor Me-förlängningens CRX-fil

Ladda ner Censor Me-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

                        Chrome extension that should censor keywords on the current page.
- Enter any keywords you would like to block on websites and delete them later.
- Highlight a word and click the "add word" option on the context menu to quickly censor a word.
- Block websites from popup to stop the extension script from running on those sites.
- A global off switch that turns off the extension's functionality.                    

Grundläggande Information om Tillägg

Namn Censor Me Censor Me
ID ggocchioncipejignjfojdccjmgdjohp
Officiell webbadress https://chromewebstore.google.com/detail/censor-me/ggocchioncipejignjfojdccjmgdjohp
Beskrivning Censor the internet by blocking certain words!
Filstorlek 16.42 KB
Antal Installationer 397
Aktuell Version 1.0
Senast Uppdaterad 2021-01-19
Publiceringsdatum 2021-01-19
Betyg 3.17/5 Totalt 6 Betyg
Utvecklare mehulpillaidev25
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Censor Me",
    "version": "1.0",
    "description": "Censor the internet by blocking certain words!",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "startup.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}