Banana-facts

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

Banana-facts là gì?

Banana-facts là một tiện ích mở rộng Chrome được phát triển bởi can kurt, và tính năng chính của nó là "This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Banana-facts

Tải xuống các tệp mở rộng Banana-facts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Banana-facts Banana-facts
ID hjncmkifldhcffmlicejlemjlmbflblk
URL Chính Thức https://chromewebstore.google.com/detail/banana-facts/hjncmkifldhcffmlicejlemjlmbflblk
Mô tả This extension adds a banana shaped button to the bottom of your page, when clicked it shows random banana facts.
Kích Thước Tệp 15.59 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-12-20
Ngày Phát Hành 2021-01-04
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển can kurt
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": []
}