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
官方網址 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"
}