Chatrandom Filter

Filter Chatrandom users by gender

Co to jest Chatrandom Filter?

Chatrandom Filter to rozszerzenie Chrome opracowane przez Discord Notebook, a jego główną funkcją jest „Filter Chatrandom users by gender”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chatrandom Filter

Pobierz pliki rozszerzeń Chatrandom Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Chatrandom Filter Chatrandom Filter
ID nokhdmifgniahpkjgmcecledffigckmn
Oficjalny URL https://chrome.google.com/webstore/detail/chatrandom-filter/nokhdmifgniahpkjgmcecledffigckmn
Opis Filter Chatrandom users by gender
Rozmiar pliku 71.16 KB
Liczba instalacji 1,001
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2020-12-06
Data Publikacji 2020-12-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Discord Notebook
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}