Banana-facts

This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.

Cos'è Banana-facts?

Banana-facts è un'estensione di Chrome sviluppata da can kurt, e la sua funzione principale è "This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Banana-facts

Scarica i file di estensione Banana-facts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.                    

Informazioni di Base sull'Estensione

Nome Banana-facts Banana-facts
ID hjncmkifldhcffmlicejlemjlmbflblk
URL Ufficiale https://chromewebstore.google.com/detail/banana-facts/hjncmkifldhcffmlicejlemjlmbflblk
Descrizione This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.
Dimensione del File 15.59 KB
Conteggio Installazioni 54
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-12-20
Data di Pubblicazione 2021-01-04
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore can kurt
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Banana-facts",
    "description": "This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.",
    "version": "0.1.1",
    "icons": {
        "48": "static\/images\/banana.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/banana.js"
            ],
            "css": [
                "static\/css\/banana.css",
                "static\/css\/popup.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "static\/images\/banana.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": []
}