CodeBy Web Tools

CodeBy Web Tools

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

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "js": [
        "scripts/check-tech.js"
      ],
      "run_at": "document_end"
    }
  ],
  "author": "Lucas Yamamoto"
}