Flingster Filter

Filter Flingster users by gender

O que é Flingster Filter?

Flingster Filter é uma extensão do Chrome desenvolvida por Discord Notebook, e sua principal característica é "Filter Flingster users by gender".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Flingster Filter

Baixe arquivos de extensão Flingster Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Flingster Filter Flingster Filter
ID bjphdgiciolfklbdpknjobaaefdgfmjd
URL Oficial https://chrome.google.com/webstore/detail/flingster-filter/bjphdgiciolfklbdpknjobaaefdgfmjd
Descrição Filter Flingster users by gender
Tamanho do Arquivo 99.25 KB
Contagem de Instalações 1,640
Versão Atual 0.0.1
Última Atualização 2020-12-06
Data de Publicação 2020-12-06
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Discord Notebook
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Flingster Filter",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Filter Flingster users by gender",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "Flingster Filter",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/flingster.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}