Kitspace 1-click BOM

Quickly fill shopping carts with electronic components.

Co to jest Kitspace 1-click BOM?

Kitspace 1-click BOM to rozszerzenie Chrome opracowane przez https://kitspace.org, a jego główną funkcją jest „Quickly fill shopping carts with electronic components.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Kitspace 1-click BOM

Pobierz pliki rozszerzeń Kitspace 1-click BOM w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Kitspace 1-click BOM Kitspace 1-click BOM
ID mflpmlediakefinapghmabapjeippfdi
Oficjalny URL https://chromewebstore.google.com/detail/kitspace-1-click-bom/mflpmlediakefinapghmabapjeippfdi
Opis Quickly fill shopping carts with electronic components.
Rozmiar pliku 230 KB
Liczba instalacji 1,950
Aktualna Wersja 1.8.8
Ostatnia Aktualizacja 2023-05-29
Data Publikacji 2020-06-10
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper https://kitspace.org
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://1clickbom.com
Adres URL Strony Pomocy https://github.com/kitspace/1clickBOM/issues
Obsługiwane Języki 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"
        }
    ]
}