Kitspace 1-click BOM

Quickly fill shopping carts with electronic components.

Что такое Kitspace 1-click BOM?

Kitspace 1-click BOM - это расширение Chrome, разработанное https://kitspace.org, и его основная функция - "Quickly fill shopping carts with electronic components.".

Снимки экрана расширения

Скачать файл CRX расширения Kitspace 1-click BOM

Скачайте файлы расширений Kitspace 1-click BOM в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
        }
    ]
}