Updated Detect Firebug module description

This commit is contained in:
bcoles
2012-02-22 20:10:38 +10:30
parent fd7cee3c5c
commit b6ce0cf611
2 changed files with 3 additions and 3 deletions

View File

@@ -14,8 +14,8 @@
// limitations under the License.
//
beef.execute(function() {
var result = "Not Installed";
if (window.console && (window.console.firebug || window.console.exception)) result = "Installed";
var result = "Disabled or not installed";
if (window.console && (window.console.firebug || window.console.exception)) result = "Enabled";
beef.net.send("<%= @command_url %>", <%= @command_id %>, "firebug="+result);
});

View File

@@ -19,7 +19,7 @@ beef:
enable: true
category: "Browser"
name: "Detect FireBug"
description: "This module checks if the Mozilla Firefox Firebug extension is installed."
description: "This module checks if the Mozilla Firefox Firebug extension is being use to inspect the current window."
authors: ["bcoles"]
target:
working: ["FF"]