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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://codeby.global, και η κύρια λειτουργία του είναι "This is an extension built by CodeBy to help VTEX developers to debug their current in development stores".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης CodeBy Web Tools

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
}