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ファイルをダウンロード

CodeBy Web Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}