View JavaScript

View JavaScript

The "View JavaScript" Firefox addon provides users with a convenient tool for inspecting and analyzing JavaScript code directly within their browser. With its intuitive interface, users can easily view, edit, and debug JavaScrip

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "View JavaScript",
  "version": "1.0",
  "description": "Displays JavaScript code for the website you are accessing.",
  "permissions": [
    "tabs"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}