CodeBy Web Tools

This is an extension built by CodeBy to help VTEX developers to debug their current in development stores

Cos'è CodeBy Web Tools?

CodeBy Web Tools è un'estensione di Chrome sviluppata da https://codeby.global, e la sua funzione principale è "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione CodeBy Web Tools

Scarica i file di estensione CodeBy Web Tools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        The goal of CodeBy Web Tools is to show in it's icon what technology the website was built in. Right now, there is support only for VTEX Legacy CMS and VTEX IO, but we have plans in the near future to include support for other ecommerce platforms too.

If you have any questions, want to report a bug or suggest a feature, please email us at [email protected].

This extension was developed by https://codeby.com.br/en.                    

Informazioni di Base sull'Estensione

Nome CodeBy Web Tools CodeBy Web Tools
ID amfpnlnkbkifhmcaeecmocgchpkbnpji
URL Ufficiale https://chromewebstore.google.com/detail/codeby-web-tools/amfpnlnkbkifhmcaeecmocgchpkbnpji
Descrizione This is an extension built by CodeBy to help VTEX developers to debug their current in development stores
Dimensione del File 134 KB
Conteggio Installazioni 61
Versione Corrente 0.3
Ultimo Aggiornamento 2022-02-08
Data di Pubblicazione 2021-03-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://codeby.global
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://codeby.global
URL della Pagina di Aiuto https://codeby.global
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodeBy Web Tools",
    "version": "0.3",
    "description": "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores",
    "icons": {
        "16": "images\/codeby-16.png",
        "32": "images\/codeby-32.png",
        "48": "images\/codeby-48.png",
        "128": "images\/codeby-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "background",
        "file:\/\/\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/codeby-16.png",
            "32": "images\/codeby-32.png",
            "48": "images\/codeby-48.png",
            "128": "images\/codeby-128.png"
        },
        "default_title": "Codeby Web Tools",
        "default_popup": "popups\/default.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/check-tech.js"
            ],
            "run_at": "document_end"
        }
    ],
    "author": "Lucas Yamamoto"
}