Flying Buttons

Make all buttons from all website flying

O que é Flying Buttons?

Flying Buttons é uma extensão do Chrome desenvolvida por Bastien Le Gall, e sua principal característica é "Make all buttons from all website flying".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Flying Buttons

Baixe arquivos de extensão Flying Buttons 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

                        Little extension to prank colleagues, make all buttons and link fly on all websites                    

Informações Básicas da Extensão

Nome Flying Buttons Flying Buttons
ID eapoficnfaiibccajcioechlbiaadkgg
URL Oficial https://chromewebstore.google.com/detail/flying-buttons/eapoficnfaiibccajcioechlbiaadkgg
Descrição Make all buttons from all website flying
Tamanho do Arquivo 89.45 KB
Contagem de Instalações 21
Versão Atual 1.5
Última Atualização 2022-03-25
Data de Publicação 2022-03-24
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Bastien Le Gall
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Flying Buttons",
    "description": "Make all buttons from all website flying",
    "version": "1.5",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": ".\/wing.png",
        "default_popup": ".\/popup.html"
    },
    "icons": {
        "50": ".\/wing.png"
    }
}