Kitspace 1-click BOM

Quickly fill shopping carts with electronic components.

Kitspace 1-click BOM란 무엇입니까?

Kitspace 1-click BOM은(는) https://kitspace.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly fill shopping carts with electronic components."입니다.

확장 프로그램 스크린샷

Kitspace 1-click BOM 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Kitspace 1-click BOM Kitspace 1-click BOM
ID mflpmlediakefinapghmabapjeippfdi
공식 URL https://chromewebstore.google.com/detail/kitspace-1-click-bom/mflpmlediakefinapghmabapjeippfdi
설명 Quickly fill shopping carts with electronic components.
파일 크기 230 KB
설치 횟수 1,950
현재 버전 1.8.8
최근 업데이트 2023-05-29
출시 날짜 2020-06-10
평점 5.00/5 총 4 개의 평점
개발자 https://kitspace.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://1clickbom.com
도움말 페이지 URL https://github.com/kitspace/1clickBOM/issues
지원되는 언어 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"
        }
    ]
}