CodeBy Web Tools

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

CodeBy Web Tools là gì?

CodeBy Web Tools là một tiện ích mở rộng Chrome được phát triển bởi https://codeby.global, và tính năng chính của nó là "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CodeBy Web Tools

Tải xuống các tệp mở rộng CodeBy Web Tools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CodeBy Web Tools CodeBy Web Tools
ID amfpnlnkbkifhmcaeecmocgchpkbnpji
URL Chính Thức https://chromewebstore.google.com/detail/codeby-web-tools/amfpnlnkbkifhmcaeecmocgchpkbnpji
Mô tả This is an extension built by CodeBy to help VTEX developers to debug their current in development stores
Kích Thước Tệp 134 KB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2022-02-08
Ngày Phát Hành 2021-03-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://codeby.global
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://codeby.global
URL Trang Trợ Giúp https://codeby.global
Ngôn Ngữ Được Hỗ Trợ 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"
}