Kitspace 1-click BOM

Quickly fill shopping carts with electronic components.

Kitspace 1-click BOM क्या है?

Kitspace 1-click BOM https://kitspace.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quickly fill shopping carts with electronic components."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Kitspace 1-click BOM एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}