CodeBy Web Tools

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

What is CodeBy Web Tools?

CodeBy Web Tools is a Chrome extension developed by https://codeby.global, and its main feature is "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores".

Extension Screenshots

screenshot
screenshot
screenshot

Download CodeBy Web Tools Extension CRX File

Download CodeBy Web Tools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name CodeBy Web Tools CodeBy Web Tools
ID amfpnlnkbkifhmcaeecmocgchpkbnpji
Official URL https://chromewebstore.google.com/detail/codeby-web-tools/amfpnlnkbkifhmcaeecmocgchpkbnpji
Description This is an extension built by CodeBy to help VTEX developers to debug their current in development stores
File Size 134 KB
Installation Count 61
Current Version 0.3
Last Updated 2022-02-08
Publish Date 2021-03-14
Rating 5.00/5 Total 1 Ratings
Developer https://codeby.global
Email [email protected]
Payment Type free
Extension Website https://codeby.global
Help Page URL https://codeby.global
Supported Languages 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"
}