CodeBy Web Tools

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

CodeBy Web Tools란 무엇입니까?

CodeBy Web Tools은(는) https://codeby.global에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

CodeBy Web Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 CodeBy Web Tools CodeBy Web Tools
ID amfpnlnkbkifhmcaeecmocgchpkbnpji
공식 URL https://chromewebstore.google.com/detail/codeby-web-tools/amfpnlnkbkifhmcaeecmocgchpkbnpji
설명 This is an extension built by CodeBy to help VTEX developers to debug their current in development stores
파일 크기 134 KB
설치 횟수 61
현재 버전 0.3
최근 업데이트 2022-02-08
출시 날짜 2021-03-14
평점 5.00/5 총 1 개의 평점
개발자 https://codeby.global
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://codeby.global
도움말 페이지 URL https://codeby.global
지원되는 언어 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"
}