Kitspace 1-click BOM

Quickly fill shopping carts with electronic components.

Kitspace 1-click BOM là gì?

Kitspace 1-click BOM là một tiện ích mở rộng Chrome được phát triển bởi https://kitspace.org, và tính năng chính của nó là "Quickly fill shopping carts with electronic components.".

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

Tải xuống tệp CRX của tiện ích mở rộng Kitspace 1-click BOM

Tải xuống các tệp mở rộng Kitspace 1-click BOM 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

                        1-click BOM fills your shopping carts for you on sites like Digikey and Mouser. Its main purpose is to work with the electronic project sharing site kitspace.org. But you can also use it from a spreadsheet or load an online .tsv file from any other site. This way you can keep one bill of materials (BOM) that lets you and people you share the BOM with, quickly purchase items from multiple distributors.

Supported distributors are:

- Digikey
- Mouser
- Farnell/Element14
- Newark
- RS
- LCSC

Please report any issues on GitHub: https://github.com/kitspace/1clickbom/issues                    

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

Tên Kitspace 1-click BOM Kitspace 1-click BOM
ID mflpmlediakefinapghmabapjeippfdi
URL Chính Thức https://chromewebstore.google.com/detail/kitspace-1-click-bom/mflpmlediakefinapghmabapjeippfdi
Mô tả Quickly fill shopping carts with electronic components.
Kích Thước Tệp 230 KB
Số Lần Cài Đặt 1,950
Phiên Bản Hiện Tại 1.8.8
Cập Nhật Lần Cuối 2023-05-29
Ngày Phát Hành 2020-06-10
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://kitspace.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://1clickbom.com
URL Trang Trợ Giúp https://github.com/kitspace/1clickBOM/issues
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kitspace 1-click BOM",
    "description": "Quickly fill shopping carts with electronic components.",
    "homepage_url": "http:\/\/1clickBOM.com",
    "version": "1.8.8",
    "permissions": [
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "storage",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        "",
        "cookies",
        "http:\/\/localhost\/"
    ],
    "browser_action": {
        "default_icon": "images\/button19.png",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "persistent": true,
        "page": "html\/background.html"
    },
    "options_ui": {
        "page": "html\/options.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "icons": {
        "16": "images\/logo16.png",
        "19": "images\/button19.png",
        "38": "images\/logo38.png",
        "48": "images\/logo48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/kitspace.org\/*",
                "*:\/\/*.kitspace.org\/*",
                "*:\/\/kitspace.dev\/*",
                "*:\/\/*.kitspace.dev\/*",
                "*:\/\/kitspace.test\/*",
                "*:\/\/*.kitspace.test\/*"
            ],
            "js": [
                "js\/kitspace.js"
            ],
            "run_at": "document_end"
        }
    ]
}