PK ́6content/PK ΁6content/webdeveloper/PK ΁6content/webdeveloper/about/PK ΁6content/webdeveloper/common/PK ΁6'content/webdeveloper/common/validation/PK ΁6content/webdeveloper/dashboard/PK ΁6content/webdeveloper/dialogs/PK ΁6content/webdeveloper/features/PK ΁6content/webdeveloper/generated/PK ΁6content/webdeveloper/images/PK ΁6$content/webdeveloper/images/content/PK ΁6%content/webdeveloper/images/features/PK ΁6!content/webdeveloper/images/logo/PK ΁6content/webdeveloper/message/PK ΁6content/webdeveloper/options/PK ΁6%content/webdeveloper/options/dialogs/PK ΁6#content/webdeveloper/options/pages/PK ΁6!content/webdeveloper/stylesheets/PK ΁6+content/webdeveloper/stylesheets/generated/PK ΁6)content/webdeveloper/stylesheets/imports/PK ΁6locale/PK ΁6 locale/en-US/PK ρ6locale/en-US/webdeveloper/PK ρ6skin/PK ρ6 skin/classic/PK ρ6skin/classic/webdeveloper/PK ρ6$skin/classic/webdeveloper/dashboard/PK ρ6skin/classic/webdeveloper/menu/PK ρ6"skin/classic/webdeveloper/options/PK ρ6$skin/classic/webdeveloper/statusbar/PK ρ6"skin/classic/webdeveloper/toolbar/PK ΁6ֈ88$content/webdeveloper/about/about.css@import url("chrome://global/skin/"); @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); description { margin-left: 0 !important; } separator, #webdeveloper-about-dialog { margin: 0 !important; padding: 0 !important; } #webdeveloper-about-details { background-color: #ffffff !important; color: #000000 !important; padding: 0.5em !important; } #webdeveloper-about-details hbox { background-image: url("chrome://webdeveloper/content/images/logo/large.png") !important; background-position: top right !important; background-repeat: no-repeat !important; min-height: 35px !important; padding-right: 35px !important; } .date { color: #999999 !important; } .name { font-size: x-large !important; padding-right: 0.25em !important; } .name, .title { font-weight: bold !important; } .title { padding-top: 0.25em !important; } .url { color: #0000ff !important; cursor: pointer !important; text-decoration: underline !important; } .url:hover { color: #ff0000 !important; }PK ΁6YYY#content/webdeveloper/about/about.js// Opens the URL in a new tab function webdeveloper_openURL(urlElement) { var parentWindow = null; var url = urlElement.firstChild.nodeValue; // If there is a parent window if(window.opener) { // If there is a grand parent window if(window.opener.opener) { parentWindow = window.opener.opener; } else { parentWindow = window.opener; } } // If a parent window was found if(parentWindow) { // If the open in windows preference is set to true if(webdeveloper_getBooleanPreference("webdeveloper.open.tabs", true)) { var newTab = parentWindow.getBrowser().addTab(url); // If the open tabs in background preference is not set or is set to false if(!webdeveloper_getBooleanPreference("webdeveloper.open.tabs.background", true)) { parentWindow.getBrowser().selectedTab = newTab; } } else { parentWindow.open(url); } window.close(); } } PK ΁6V$content/webdeveloper/about/about.xul