Banana-facts

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

What is Banana-facts?

Banana-facts is a Chrome extension developed by can kurt, and its main feature is "This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.".

Extension Screenshots

screenshot

Download Banana-facts Extension CRX File

Download Banana-facts 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

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

Extension Basic Information

Name Banana-facts Banana-facts
ID hjncmkifldhcffmlicejlemjlmbflblk
Official URL https://chromewebstore.google.com/detail/banana-facts/hjncmkifldhcffmlicejlemjlmbflblk
Description This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.
File Size 15.59 KB
Installation Count 54
Current Version 0.1.1
Last Updated 2023-12-20
Publish Date 2021-01-04
Rating 3.00/5 Total 2 Ratings
Developer can kurt
Email [email protected]
Payment Type free
Supported Languages 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": []
}