Flying Buttons

Make all buttons from all website flying

What is Flying Buttons?

Flying Buttons is a Chrome extension developed by Bastien Le Gall, and its main feature is "Make all buttons from all website flying".

Extension Screenshots

screenshot

Download Flying Buttons Extension CRX File

Download Flying Buttons extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Flying Buttons Flying Buttons
ID eapoficnfaiibccajcioechlbiaadkgg
Official URL https://chromewebstore.google.com/detail/flying-buttons/eapoficnfaiibccajcioechlbiaadkgg
Description Make all buttons from all website flying
File Size 89.45 KB
Installation Count 21
Current Version 1.5
Last Updated 2022-03-25
Publish Date 2022-03-24
Rating 5.00/5 Total 2 Ratings
Developer Bastien Le Gall
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}