Chatrandom Filter

Filter Chatrandom users by gender

Cos'è Chatrandom Filter?

Chatrandom Filter è un'estensione di Chrome sviluppata da Discord Notebook, e la sua funzione principale è "Filter Chatrandom users by gender".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chatrandom Filter

Scarica i file di estensione Chatrandom Filter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Tired of pressing next all the time? Let us do it for you!

The extension will automatically next the person if the gender they selected does not match the ones you choose.

Also, you can now skip to the next person by pressing escape.                    

Informazioni di Base sull'Estensione

Nome Chatrandom Filter Chatrandom Filter
ID nokhdmifgniahpkjgmcecledffigckmn
URL Ufficiale https://chrome.google.com/webstore/detail/chatrandom-filter/nokhdmifgniahpkjgmcecledffigckmn
Descrizione Filter Chatrandom users by gender
Dimensione del File 71.16 KB
Conteggio Installazioni 1,001
Versione Corrente 0.0.1
Ultimo Aggiornamento 2020-12-06
Data di Pubblicazione 2020-12-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Discord Notebook
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatrandom Filter",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Filter Chatrandom users by gender",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Chatrandom Filter",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chatrandom.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}