Examine source code of Odoo Debug Advanced

Inspect and view changes in Odoo Debug Advanced source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Odoo Debug",
  "version": "5.0",
  "description": "Minimal and fast extension to toggle debug mode of Odoo",
  "browser_action": {
    "default_title": "- Click for normal debug \n- Double click for debug with assets",
    "default_icon": {
      "16": "/images/icons/off_16.png",
      "32": "/images/icons/off_32.png",
      "48": "/images/icons/off_48.png"
    }
  },
  "icons": {
    "16": "/images/icons/off_16.png",
    "32": "/images/icons/off_32.png",
    "48": "/images/icons/off_48.png"
  },
  "author": "Droggol Infotech Private Limited",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Period"
      }
    }
  },
  "incognito": "spanning",
  "offline_enabled": true,
  "permissions": [
    "tabs"
  ],
  "web_accessible_resources": [
    "pageScript.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{91f2a6f4-c8b2-4c0b-bbb5-7c26d5608f97}"
    }
  }
}