Flying Buttons

Make all buttons from all website flying

Vad är Flying Buttons?

Flying Buttons är en Chrome-tillägg utvecklad av Bastien Le Gall, och dess huvudfunktion är "Make all buttons from all website flying".

Tilläggsskärmbilder

screenshot

Ladda ner Flying Buttons-förlängningens CRX-fil

Ladda ner Flying Buttons-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Flying Buttons Flying Buttons
ID eapoficnfaiibccajcioechlbiaadkgg
Officiell webbadress https://chromewebstore.google.com/detail/flying-buttons/eapoficnfaiibccajcioechlbiaadkgg
Beskrivning Make all buttons from all website flying
Filstorlek 89.45 KB
Antal Installationer 21
Aktuell Version 1.5
Senast Uppdaterad 2022-03-25
Publiceringsdatum 2022-03-24
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Bastien Le Gall
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}