Showing posts with label Mozilla Firefox. Show all posts
Showing posts with label Mozilla Firefox. Show all posts

Tuesday, October 8, 2013

Javascript StartsWith And How to Check Plugin in Firfox and Crome

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> New Document </title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <script>
function demo(){
    var L = navigator.plugins.length;
    if (typeof String.prototype.startsWith != 'function') {
  // see below for better implementation!
  String.prototype.startsWith = function (str){
    return this.indexOf(str) == 0;
  };
}

document.write(
  L.toString() + " Plugin(s)<br>" +
  "Name | Filename | description<br>"
);

for(var i = 0; i < L; i++) {
  document.write(
    navigator.plugins[i].name +
    " | " +
    navigator.plugins[i].filename +
    " | " +
    navigator.plugins[i].description +
    " | " +
    navigator.plugins[i].version +
    "<br>"
  );
  var data = navigator.plugins[i].name;
var input = 'Dynamic Web TWAIN';
alert(data.startsWith(input));
}

}
  </script>
 </head>

 <body onLoad="demo();">
 
 </body>
</html>

Tuesday, October 1, 2013

Remove Delta Search features from Mozilla Firefox

Remove Delta Toolbar from Add-ons manager

  1. Open Mozilla Firefox.
  2. From the Firefox orange button (Or from the standard Tools menu), click Add-ons.
  3. In Add-ons manager left side menu bar, make sure Extensions is selected
  4. Disable or remove the Delta Toolbar add-on
  5. Restart the browser.

Remove Delta Toolbar from Windows programs

  1. Click the Start button and select Control Panel.
  2. Select Programs and Features.
  3. Select Delta Toolbar from the Programs list and right click to uninstall.
  4. Click YES on the popup message.

Remove Delta Search from default search engines

  1. Open Mozilla Firefox.
  2. Click inside the Search text field and press the F4 key
  3. Select Manage Search Engines from the drop down list
  4. Select Delta Search and click the Remove button.

Remove Delta Search home page

  1. Open Mozilla Firefox.
  2. From the Firefox orange button (or from the standard Tools menu), select Options.
  3. In the General tab, delete the Delta URL from the Home page text box.
  4. Click OK to save the changes.

Remove Delta Search home page from New Tab

If you open a new tab in Firefox, and delta Search home page is still there, please do the following:
  1. Type: about:config in the address bar and press enter
  2. Confirm the message.
  3. Type: browser.newtab.url in the Search text field
  4. Right click on the result and select Toggle (or Reset in older versions)


* Restart your computer after completing all the above steps.

How ChatGPT can Benefit Coding: Your Guide to Leveraging an AI Language Model

 Introduction: Hello, coders! Welcome to this blog post on how ChatGPT, an AI language model, can benefit your coding skills and projects. A...